/*
Theme Name: Bilgelik Glacier Lite
Theme URI: https://www.bilgelikakademisi.com/
Author: ES
Description: Glacier-style lightweight landing theme for Bilgelik Akademisi.
Version: 1.0.0
Text Domain: bilgelik-glacier-lite
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #000;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-logo {
  font-family: "Dosis", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu li {
  position: relative;
}

.main-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: "Dosis", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 1px;
  background: #000;
  transition: width 180ms ease;
}

.main-menu a:hover::after,
.main-menu .current-menu-item > a::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f8f8f8;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.78)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  width: min(1040px, calc(100% - 40px));
  padding: 92px 0 72px;
  text-align: center;
}

.hero-eyebrow {
  margin: 0 0 18px;
  font-family: "Dosis", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: "Dosis", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-subtitle {
  width: min(740px, 100%);
  margin: 26px auto 0;
  font-size: 18px;
  line-height: 1.7;
}

.home-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  background: #000;
  color: #fff !important;
  font-family: "Dosis", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, opacity 180ms ease;
}

.cta-button:hover {
  opacity: 0.86;
  transform: translateY(-1px);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.intro h2,
.page-content h1,
.page-content h2 {
  margin: 0 0 18px;
  color: #000;
  font-family: "Dosis", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.intro p,
.page-content p {
  line-height: 1.8;
}

.link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e7e7e7;
}

.link-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #e7e7e7;
  font-family: "Dosis", Arial, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.link-list a::after {
  content: ">";
}

.site-footer {
  margin-top: 40px;
  padding: 34px 20px;
  color: #000;
  background: #f8f8f8;
  text-align: center;
}

.site-footer .social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
  font-family: "Dosis", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-content {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0;
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 74px;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  .main-menu {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px 18px;
  }

  .hero {
    min-height: 420px;
  }

  .cta-grid,
  .intro {
    grid-template-columns: 1fr;
  }
}

.content-hero {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 30px;
  text-align: center;
}

.content-eyebrow {
  margin: 0 0 14px;
  font-family: "Dosis", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.content-hero h1 {
  margin: 0;
  color: #000;
  font-family: "Dosis", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.content-hero p {
  width: min(760px, 100%);
  margin: 20px auto 0;
  font-size: 17px;
  line-height: 1.7;
}

.booking-panel,
.support-panel,
.program-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 44px;
}

.booking-panel,
.support-panel {
  padding: 28px;
  border: 1px solid #e5e5e5;
  background: #fff;
}

.support-panel h2 {
  margin-top: 0;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.program-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid #e5e5e5;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.program-card h2 {
  margin: 0 0 14px;
  color: #000;
  font-family: "Dosis", Arial, sans-serif;
  font-size: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.program-card p {
  line-height: 1.7;
}

.program-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.program-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  background: #000;
  color: #fff !important;
  font-family: "Dosis", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.program-button.secondary {
  background: #f5f5f5;
  color: #000 !important;
  border: 1px solid #ddd;
}

@media (max-width: 980px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
}
