/* ============================================================
   OKUL SİTESİ — ANA STİL DOSYASI
   Renkler: #0073bd (Mavi) | #d77c34 (Turuncu)
   Fontlar: Playfair Display (başlık) + DM Sans (metin)
   ============================================================ */

/* ── CSS DEĞİŞKENLERİ ── */
:root {
  --blue:        #0073bd;
  --blue-dark:   #005a94;
  --blue-deeper: #003f6b;
  --orange:      #d77c34;
  --orange-light:#e8955a;
  --cream:       #f7f4f0;
  --white:       #ffffff;
  --gray:        #7a8499;
  --gray-light:  #e8ecf1;
  --text:        #1e2a3a;
  --text-light:  #4a5568;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 12px rgba(0,115,189,.10);
  --shadow-md:   0 8px 32px rgba(0,115,189,.14);
  --shadow-lg:   0 20px 60px rgba(0,115,189,.18);
  --transition:  .3s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── TİPOGRAFİ ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; color: var(--text); }
.section-label  { font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); font-weight: 700; margin-bottom: 10px; }
.section-title  { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--text); margin-bottom: 18px; }
.section-title em { color: var(--blue); font-style: normal; }
.section-desc   { color: var(--text-light); font-size: .98rem; line-height: 1.85; max-width: 520px; }

/* ── BUTONLAR ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white); padding: 13px 30px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem; font-family: 'DM Sans', sans-serif;
  border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(0,115,189,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,115,189,.4); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white); padding: 13px 30px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem; font-family: 'DM Sans', sans-serif;
  border: none; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(215,124,52,.3);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(215,124,52,.4); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--blue); color: var(--blue);
  padding: 11px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem; font-family: 'DM Sans', sans-serif;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.5); color: var(--white);
  padding: 11px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem; font-family: 'DM Sans', sans-serif;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline-white:hover { border-color: var(--orange); background: rgba(215,124,52,.15); }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 22px 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .4s ease;
}
#navbar.scrolled {
  background: rgba(0,40,80,.97);
  backdrop-filter: blur(14px);
  padding: 14px 64px;
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  /* GÖRSEL: images/logo.png */
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; overflow: hidden;
}
.nav-logo-img img { width: 100%; height: 100%; object-fit: cover; }
.nav-logo-text { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.05rem; font-weight: 700; line-height: 1.2; }
.nav-logo-text span { display: block; font-family: 'DM Sans', sans-serif; font-size: .6rem; font-weight: 400; color: rgba(255,255,255,.6); letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,.82); font-size: .88rem; font-weight: 500; position: relative; transition: color var(--transition); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; padding: 9px 22px; border-radius: var(--radius-sm); font-weight: 700 !important; transition: background var(--transition), transform var(--transition) !important; }
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 26px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); display: block; }
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(0,40,80,.98); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: white; font-size: 1.4rem; font-family: 'Playfair Display', serif; font-weight: 700; transition: color var(--transition); }
.mobile-menu a:hover { color: var(--orange); }
.mobile-close { position: absolute; top: 24px; right: 28px; background: none; border: none; color: white; font-size: 2.2rem; cursor: pointer; line-height: 1; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-deeper) 0%, var(--blue-dark) 55%, var(--blue) 100%);
  position: relative; display: flex; align-items: center; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(215,124,52,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 70%, rgba(0,0,0,.28) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  animation: patternDrift 28s linear infinite;
}
@keyframes patternDrift { from { transform: translateY(0); } to { transform: translateY(52px); } }
/* GÖRSEL: hero arka plan resmi için .hero-bg-img kullanın */
.hero-bg-img {
  position: absolute; inset: 0;
  /* background-image: url('../images/hero-bg.jpg'); */
  background-size: cover; background-position: center;
  opacity: .13;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: var(--orange); animation: floatUp linear infinite; }
@keyframes floatUp {
  0%   { transform: translateY(100vh) rotate(0deg);   opacity: 0; }
  10%  { opacity: .35; }
  90%  { opacity: .35; }
  100% { transform: translateY(-120px) rotate(540deg); opacity: 0; }
}
.hero-content { position: relative; z-index: 2; padding: 130px 64px 80px; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(215,124,52,.2); border: 1px solid rgba(215,124,52,.4);
  color: var(--orange-light); padding: 6px 16px; border-radius: 20px;
  font-size: .75rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
  margin-bottom: 24px; opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 900; color: var(--white);
  line-height: 1.08; margin-bottom: 22px;
  opacity: 0; animation: fadeUp .8s .5s forwards;
}
.hero-title em { color: var(--orange); font-style: normal; }
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,.72);
  line-height: 1.85; max-width: 480px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp .8s .7s forwards;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .9s forwards; }
.hero-stats { position: absolute; right: 64px; bottom: 64px; z-index: 2; display: flex; gap: 44px; opacity: 0; animation: fadeUp .8s 1.1s forwards; }
.stat { text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--orange); line-height: 1; }
.stat-label  { font-size: .7rem; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.38); font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
.hero-scroll::after { content: ''; width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(215,124,52,.6), transparent); }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HAKKIMIZDA ── */
#about { padding: 110px 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; background: var(--white); }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; height: 440px; border-radius: var(--radius-md);
  object-fit: cover; background: var(--gray-light);
  /* GÖRSEL: images/about.jpg */
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--gray);
  box-shadow: 20px 20px 0 var(--orange);
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -22px; right: -22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white); width: 96px; height: 96px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,115,189,.4); border: 3px solid var(--white);
}
.about-img-badge .big { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 900; line-height: 1; }
.about-img-badge .sm  { font-size: .58rem; letter-spacing: 1px; text-transform: uppercase; opacity: .85; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 36px; }
.feature-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--cream); padding: 12px 14px; border-radius: var(--radius-sm);
  font-size: .84rem; font-weight: 500; color: var(--text);
  border-left: 3px solid var(--blue);
}
.feature-pill .icon { font-size: 1.1rem; }

/* ── PROGRAMLAR ── */
#programs { padding: 110px 64px; background: var(--cream); }
.programs-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid rgba(0,115,189,.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.program-card-img {
  height: 170px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
  /* GÖRSEL: background-image: url('../images/program-fen.jpg') */
}
.program-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .6; }
.pc-1 { background: linear-gradient(135deg, var(--blue-deeper), var(--blue)); }
.pc-2 { background: linear-gradient(135deg, #7a3a10, var(--orange)); }
.pc-3 { background: linear-gradient(135deg, #0a4a4a, #0d8080); }
.pc-4 { background: linear-gradient(135deg, #2a1060, #5a2aaa); }
.pc-5 { background: linear-gradient(135deg, #0a3a1a, #1a7a3a); }
.pc-6 { background: linear-gradient(135deg, #4a0a0a, #aa2a2a); }
.program-card-body { padding: 24px; }
.program-card-body h3 { font-size: 1.12rem; color: var(--text); margin-bottom: 8px; }
.program-card-body p  { color: var(--text-light); font-size: .86rem; line-height: 1.7; margin-bottom: 16px; }
.program-link { color: var(--blue); font-size: .85rem; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.program-link:hover { gap: 10px; }

/* ── HABERLER ── */
#news { padding: 110px 64px; background: var(--white); }
.news-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; margin-top: 56px; }
.news-card {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.news-card-img {
  height: 200px; position: relative; overflow: hidden;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--gray);
  /* GÖRSEL: <img> ya da background-image ekleyin */
}
.news-card:first-child .news-card-img { height: 250px; }
.news-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--orange); color: var(--white);
  padding: 4px 12px; border-radius: 20px; font-size: .7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.news-card-body { padding: 22px; }
.news-date { font-size: .76rem; color: var(--gray); margin-bottom: 8px; }
.news-card-body h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 8px; line-height: 1.45; }
.news-card-body p  { color: var(--text-light); font-size: .85rem; line-height: 1.7; }

/* ── TESTİMONİALS ── */
#testimonials {
  padding: 110px 64px;
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue-dark));
  position: relative; overflow: hidden;
}
#testimonials::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(215,124,52,.15), transparent 55%);
}
#testimonials .section-title { color: var(--white); }
.ttrack-wrap {
  overflow: hidden; margin-top: 56px; position: relative;
}
.ttrack-wrap::before, .ttrack-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.ttrack-wrap::before { left: 0;  background: linear-gradient(to right, var(--blue-deeper), transparent); }
.ttrack-wrap::after  { right: 0; background: linear-gradient(to left, var(--blue-dark), transparent); }
.ttrack { display: flex; gap: 22px; animation: scrollLeft 38s linear infinite; width: max-content; }
.ttrack:hover { animation-play-state: paused; }
@keyframes scrollLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tcard {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md); padding: 26px; width: 315px; flex-shrink: 0;
  transition: background var(--transition);
}
.tcard:hover { background: rgba(255,255,255,.13); }
.tcard-stars { color: var(--orange); font-size: .9rem; letter-spacing: 3px; margin-bottom: 14px; }
.tcard p     { color: rgba(255,255,255,.76); font-size: .88rem; line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: .85rem; flex-shrink: 0; overflow: hidden;
  /* GÖRSEL: <img> eklenebilir */
}
.tcard-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcard-name { font-weight: 700; color: var(--white); font-size: .88rem; }
.tcard-role { font-size: .76rem; color: rgba(255,255,255,.5); }

/* ── GALERİ ── */
#gallery { padding: 110px 64px; background: var(--cream); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px; gap: 14px; margin-top: 56px;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--gray-light); position: relative; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--gray);
  /* GÖRSEL: background-image ya da <img> ekleyin */
}
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,115,189,.5), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.big  { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* ── İLETİŞİM ── */
#contact { padding: 110px 64px; background: var(--white); display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px; background: var(--cream); border-radius: var(--radius-md);
  border-left: 3px solid var(--blue); transition: box-shadow var(--transition);
}
.contact-item:hover { box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-item h4 { font-family: 'DM Sans', sans-serif; font-size: .84rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.contact-item p  { font-size: .84rem; color: var(--text-light); line-height: 1.55; }
.map-wrap {
  margin-top: 36px; border-radius: var(--radius-md); overflow: hidden;
  height: 220px; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); font-size: .88rem;
  border: 2px dashed rgba(0,115,189,.2);
  /* HARİTA: Google Maps iframe ekleyin */
}
.contact-form { background: var(--cream); border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-size: 1.7rem; color: var(--text); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .78rem; font-weight: 700; color: var(--text); letter-spacing: .4px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 1.5px solid rgba(0,115,189,.15);
  border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
  font-size: .9rem; color: var(--text); background: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,115,189,.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 14px; border: none; cursor: pointer; }

/* ── FOOTER ── */
footer { background: var(--blue-deeper); color: rgba(255,255,255,.6); padding: 70px 64px 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 52px; }
.footer-brand p { font-size: .87rem; line-height: 1.8; margin: 18px 0 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: white; font-size: .95rem; transition: background var(--transition), transform var(--transition);
}
.social-btn:hover { background: var(--orange); transform: translateY(-2px); }
.footer-col h4 { font-family: 'DM Sans', sans-serif; color: var(--white); font-size: .85rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,.55); font-size: .86rem; transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul a::before { content: '›'; color: var(--orange); font-size: 1rem; line-height: 1; }
.footer-col ul a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  #navbar, #navbar.scrolled { padding: 16px 32px; }
  .hero-content  { padding: 120px 32px 80px; }
  .hero-stats    { right: 32px; bottom: 50px; gap: 30px; }
  #about, #programs, #news, #gallery, #contact, #testimonials { padding: 80px 32px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  #navbar, #navbar.scrolled { padding: 14px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  #about, #programs, #news, #gallery, #contact, #testimonials { padding: 64px 20px; }
  .hero-content { padding: 100px 20px 60px; max-width: 100%; }
  .hero-stats   { display: none; }
  .hero-actions { flex-direction: column; }
  #about        { grid-template-columns: 1fr; gap: 40px; }
  .about-img-main { height: 260px; }
  .about-features { grid-template-columns: 1fr; }
  .programs-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .programs-grid   { grid-template-columns: 1fr; }
  .news-grid       { grid-template-columns: 1fr; }
  .gallery-grid    { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.big, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  #contact { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
