/* ── GOOGLE FONTS ───────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── VARIABLES ──────────────────────────────── */
:root {
  --navy:    #001f4d;
  --deep:    #003366;
  --mid:     #0055aa;
  --bright:  #1a7fe0;
  --accent:  #f5c518;
  --gold:    #e8a900;
  --light:   #e8f0fc;
  --white:   #ffffff;
  --text:    #1a1a2e;
  --muted:   #5a6880;
  --card-bg: #f7faff;
  --radius:  18px;
  --shadow:  0 8px 40px rgba(0,51,102,.13);
}

/* ── RESET ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── UTILITIES ──────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ── SCROLL ANIMATION ───────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ── NAV ────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(0,19,51,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-logo { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(245,197,24,.5); flex-shrink: 0; }
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); line-height: 1.2;
  text-transform: uppercase; letter-spacing: .04em;
}
.nav-brand-text span { display: block; font-size: .7rem; font-weight: 400; color: var(--accent); letter-spacing: .08em; font-family: 'DM Sans', sans-serif; text-transform: none; }
.nav-badge {
  background: var(--accent); color: var(--navy);
  font-size: .7rem; font-weight: 700;
  padding: 6px 14px; border-radius: 40px;
  letter-spacing: .05em;
}

/* ── HERO ───────────────────────────────────── */
#hero {
  min-height: 100svh;
  background: linear-gradient(135deg, #001433 0%, #003366 45%, #0055aa 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
}
#hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,127,224,.25) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  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: 60px 60px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-badge {
  display: inline-block;
  background: rgba(245,197,24,.18);
  border: 1px solid rgba(245,197,24,.4);
  color: var(--accent);
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 20px; border-radius: 40px; margin-bottom: 28px;
  animation: fadeDown .8s ease both;
}
.hero-school {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white);
  animation: fadeUp .9s .1s ease both;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin: 16px 0 12px;
  animation: fadeUp .9s .2s ease both;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.78);
  line-height: 1.7; margin-bottom: 40px;
  animation: fadeUp .9s .3s ease both;
}
.hero-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .9s .4s ease both;
}

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: .95rem; text-decoration: none; transition: all .25s ease;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--accent); color: var(--navy); box-shadow: 0 4px 20px rgba(245,197,24,.35); }
.btn-primary:hover { background: #ffd740; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,197,24,.5); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); transform: translateY(-2px); }
.btn-fb { background: #1877f2; color: #fff; box-shadow: 0 4px 20px rgba(24,119,242,.35); }
.btn-fb:hover { background: #0e6bdd; transform: translateY(-3px); }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,.35); }
.btn-wa:hover { background: #1db954; transform: translateY(-3px); }

/* Scroll arrow */
.scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.45); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce 2s infinite;
}
.scroll-hint svg { width: 20px; height: 20px; }

/* ── ABOUT ──────────────────────────────────── */
#about { background: var(--white); padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(135deg, var(--deep), var(--mid));
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.about-img-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #003366, #0077cc); opacity: 1;
}
.about-icon-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 30px;
}
.about-icon-item {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 18px 12px;
  text-align: center; color: var(--white);
  backdrop-filter: blur(6px);
}
.about-icon-item .ic { font-size: 1.8rem; display: block; margin-bottom: 6px; }
.about-icon-item .il { font-size: .7rem; opacity: .8; }
.about-text p { font-size: 1.05rem; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }
.highlight-bar {
  display: flex; align-items: center; gap: 12px;
  background: var(--light);
  border-left: 4px solid var(--mid);
  border-radius: 0 10px 10px 0;
  padding: 14px 20px;
  font-size: .95rem; color: var(--deep); font-weight: 500;
  margin-top: 10px;
}

/* ── TALENTS ────────────────────────────────── */
#talents { background: var(--light); padding: 90px 0; }
.talents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px; margin-top: 50px;
}
.talent-card {
  background: var(--white);
  border-radius: var(--radius); padding: 34px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: default; position: relative; overflow: hidden;
}
.talent-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--mid), var(--bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.talent-card:hover::before { transform: scaleX(1); }
.talent-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(0,51,102,.18); }
.talent-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.talent-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.talent-desc { font-size: .85rem; color: var(--muted); line-height: 1.65; }

/* ── RECOGNITION ────────────────────────────── */
#recognition {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep) 60%, #004080 100%);
  padding: 100px 0; position: relative; overflow: hidden;
}
#recognition::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,127,224,.2) 0%, transparent 65%);
}
.recognition-inner { position: relative; z-index: 2; text-align: center; }
.recognition-inner .section-title { color: var(--white); max-width: 700px; margin: 0 auto 24px; }
.recognition-inner .section-sub { color: rgba(255,255,255,.72); margin: 0 auto 50px; }
.recog-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.recog-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 32px 24px;
  backdrop-filter: blur(8px);
  transition: background .3s ease, transform .3s ease;
}
.recog-card:hover { background: rgba(255,255,255,.14); transform: translateY(-4px); }
.recog-card .ic { font-size: 2rem; margin-bottom: 14px; display: block; }
.recog-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.recog-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ── EFFORTS ────────────────────────────────── */
#efforts { background: var(--white); padding: 90px 0; }
.efforts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.effort-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid #e8eef8;
}
.effort-item:last-child { border-bottom: none; }
.effort-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--mid); font-size: .9rem; flex-shrink: 0;
  border: 2px solid var(--mid);
}
.effort-text h4 { font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.effort-text p  { font-size: .9rem; color: var(--muted); line-height: 1.6; }
.efforts-visual {
  background: linear-gradient(135deg, var(--deep), var(--bright));
  border-radius: var(--radius); padding: 40px 34px; color: var(--white);
}
.efforts-visual h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 14px; }
.efforts-visual p  { color: rgba(255,255,255,.8); line-height: 1.8; font-size: .97rem; margin-bottom: 24px; }
.efforts-visual .pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
  border-radius: 40px; padding: 6px 16px; font-size: .8rem; color: var(--white);
}

/* ── QUOTE ──────────────────────────────────── */
#quote { background: linear-gradient(120deg, #f7faff 0%, #e8f0fc 100%); padding: 80px 0; text-align: center; }
.quote-box { max-width: 820px; margin: 0 auto; position: relative; padding: 0 40px; }
.quote-box::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 8rem; line-height: .7;
  color: var(--mid); opacity: .15;
  position: absolute; top: -10px; left: 0;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  line-height: 1.55; color: var(--navy); font-style: italic; font-weight: 700;
}
.quote-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--mid), var(--accent));
  border-radius: 4px; margin: 24px auto 0;
}

/* ── GALLERY ────────────────────────────────── */
#gallery { background: var(--white); padding: 90px 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 50px;
}
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; aspect-ratio: 3/2;
  background: linear-gradient(135deg, #e0eaff, #c8d9f5);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,51,102,.2); }
.gallery-item .g-inner { text-align: center; padding: 20px; }
.gallery-item .g-icon { font-size: 2.5rem; margin-bottom: 10px; display: block; }
.gallery-item .g-label { font-size: .85rem; font-weight: 600; color: var(--deep); }
.gallery-item .g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,51,102,.55), rgba(0,85,170,.45));
  opacity: 0; transition: opacity .3s ease;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .g-overlay { opacity: 1; }
.gallery-item .g-overlay span { color: #fff; font-size: .85rem; font-weight: 600; letter-spacing: .08em; }

/* ── CTA ────────────────────────────────────── */
#cta {
  background: linear-gradient(135deg, var(--navy), var(--deep));
  padding: 90px 0; text-align: center; position: relative; overflow: hidden;
}
#cta::before {
  content: '2026';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 16rem; font-weight: 900;
  color: rgba(255,255,255,.03); pointer-events: none;
  white-space: nowrap; line-height: 1;
}
.cta-inner { position: relative; z-index: 2; }
.cta-badge {
  display: inline-block; background: var(--accent); color: var(--navy);
  font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 40px; margin-bottom: 20px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white); font-weight: 900; margin-bottom: 16px;
}
.cta-sub { color: rgba(255,255,255,.72); font-size: 1.05rem; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────── */
footer { background: #000e24; padding: 36px 24px; text-align: center; }
.footer-school { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); font-weight: 700; margin-bottom: 8px; }
.footer-powered { font-size: .8rem; color: rgba(255,255,255,.4); }
.footer-powered a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-divider { width: 60px; height: 1px; background: rgba(255,255,255,.12); margin: 16px auto; }

/* ── KEYFRAMES ──────────────────────────────── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(30px);  } to { opacity: 1; transform: none; } }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .about-grid, .efforts-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; }
  .section { padding: 60px 0; }
  .recog-cards { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .talents-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .talent-card { padding: 24px 16px; }
  nav { padding: 12px 16px; }
}
