/* ─── Reset & Tokens ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #A50044;
  --blue:       #004D98;
  --gold:       #EDBB00;
  --red-light:  #FFE8F2;
  --blue-light: #E6F0FF;
  --gold-light: #FFF8D6;
  --warm-bg:    #FFF9F2;
  --dark:       #1C1C3A;
  --mid:        #5A5A7A;
  --white:      #FFFFFF;
  --radius-lg:  24px;
  --radius-md:  16px;
  --shadow-sm:  0 4px 16px rgba(0,0,0,.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--warm-bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─── NAV ──────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0,0,0,.09);
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
}
.logo {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none;
}
.logo-apple {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 3px 12px rgba(165,0,68,.35);
}
.logo-name {
  font-family: 'Fredoka One', cursive;
  font-size: 1.45rem;
  background: linear-gradient(100deg, var(--red) 30%, var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: .4rem; list-style: none; align-items: center; }
.nav-links a {
  background: none; border: none; cursor: pointer;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .95rem;
  color: var(--mid);
  padding: .45rem 1.1rem; border-radius: 50px;
  transition: background .25s, color .25s;
  text-decoration: none;
  display: inline-block;
}
.nav-links a:hover  { background: var(--red-light); color: var(--red); }
.nav-links a.active { background: var(--red); color: var(--white); }
.nav-social { display: flex; gap: .5rem; align-items: center; margin-left: .4rem; }
.nav-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1rem; color: var(--white); text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.nav-social-link:hover { transform: translateY(-3px) scale(1.12); box-shadow: 0 5px 16px rgba(0,0,0,.3); }
.nav-social-link.youtube   { background: #FF0000; color: white; }
.nav-social-link.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color:white; }

/* ─── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue) 0%, var(--red) 55%, var(--gold) 100%);
  color: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.hero::before {
  width: 420px; height: 420px;
  background: rgba(237,187,0,.18);
  top: -120px; right: -100px;
  animation: floatBubble 7s ease-in-out infinite;
}
.hero::after {
  width: 280px; height: 280px;
  background: rgba(255,255,255,.1);
  bottom: -80px; left: -60px;
  animation: floatBubble 9s ease-in-out infinite reverse;
}
@keyframes floatBubble {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-24px) scale(1.04); }
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  padding: .35rem 1.1rem;
  border-radius: 50px;
  font-size: .85rem; font-weight: 800; letter-spacing: .8px;
  margin-bottom: 1.6rem;
}
.hero h1 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.1;
  margin-bottom: 1.4rem;
  text-shadow: 0 3px 24px rgba(0,0,0,.18);
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: .93; line-height: 1.75;
  max-width: 600px; margin: 0 auto 2.4rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .85rem 2rem; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  cursor: pointer; border: none; transition: transform .25s, box-shadow .25s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-3px); }
.btn-white { background: var(--white); color: var(--red); box-shadow: 0 6px 24px rgba(0,0,0,.2); }
.btn-white:hover { box-shadow: 0 10px 32px rgba(0,0,0,.28); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.65); }
.btn-outline:hover { background: rgba(255,255,255,.15); }

/* ─── STAT BAR ─────────────────────────────────────────────── */
.stat-bar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap;
  padding: 1.8rem 2rem;
}
.stat { text-align: center; }
.stat-n { font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--red); }
.stat-l { font-size: .8rem; font-weight: 700; color: var(--mid); letter-spacing: .5px; }

/* ─── SECTIONS ─────────────────────────────────────────────── */
.section { max-width: 1160px; margin: 0 auto; padding: 5rem 2rem; }
.section-hd { text-align: center; margin-bottom: 3rem; }
.tag {
  display: inline-block;
  background: var(--red-light); color: var(--red);
  padding: .3rem 1rem; border-radius: 50px;
  font-size: .78rem; font-weight: 900; letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: .9rem;
}
.tag.blue { background: var(--blue-light); color: var(--blue); }
.tag.gold { background: var(--gold-light); color: #9C7A00; }
.section-hd h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: .9rem;
}
.section-hd p { color: var(--mid); font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.75; }

/* ─── PILLARS ──────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1.4rem; }
.pillar {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem 1.4rem; text-align: center;
  box-shadow: var(--shadow-sm); border-bottom: 4px solid transparent;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column; align-items: center;
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.pillar:nth-child(1) { border-color: var(--red); }
.pillar:nth-child(2) { border-color: var(--blue); }
.pillar:nth-child(3) { border-color: var(--gold); }
.pillar:nth-child(4) { border-color: #22C55E; }
.pillar-icon {
  width: 68px; height: 68px; border-radius: 18px;
  margin: 0 auto 1.1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.pillar:nth-child(1) .pillar-icon { background: var(--red-light); }
.pillar:nth-child(2) .pillar-icon { background: var(--blue-light); }
.pillar:nth-child(3) .pillar-icon { background: var(--gold-light); }
.pillar:nth-child(4) .pillar-icon { background: #DCFCE7; }
.pillar h3 { font-family: 'Fredoka One', cursive; font-size: 1.25rem; margin-bottom: .65rem; }
.pillar p { color: var(--mid); font-size: .88rem; line-height: 1.65; flex: 1; }

/* ─── AGE BAND ─────────────────────────────────────────────── */
.age-band {
  background: linear-gradient(135deg, var(--blue) 0%, #006ACC 100%);
  color: var(--white); padding: 5rem 2rem; text-align: center;
}
.age-band h2 { font-family: 'Fredoka One', cursive; font-size: clamp(1.8rem,4vw,2.7rem); margin-bottom: .9rem; }
.age-band > p { opacity: .92; font-size: 1.05rem; max-width: 560px; margin: 0 auto 3rem; line-height: 1.75; }
.age-cards { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; max-width: 900px; margin: 0 auto; }
.age-card {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px); border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem; min-width: 150px; flex: 1; text-align: center;
  transition: background .25s;
}
.age-card:hover { background: rgba(255,255,255,.25); }
.age-card .em { font-size: 2.4rem; display: block; margin-bottom: .5rem; }
.age-card h4 { font-family: 'Fredoka One', cursive; font-size: 1.1rem; margin-bottom: .25rem; }
.age-card p  { font-size: .8rem; opacity: .85; font-weight: 700; }

/* ─── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--red), #CC0055);
  color: var(--white); padding: 5rem 2rem; text-align: center;
}
.cta-band h2 { font-family: 'Fredoka One', cursive; font-size: clamp(1.8rem, 4vw, 2.7rem); margin-bottom: .9rem; }
.cta-band p { opacity: .92; font-size: 1.05rem; margin-bottom: 2rem; }

/* ─── ABOUT PAGE ───────────────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--gold) 0%, var(--red) 100%);
  color: var(--white); padding: 5.5rem 2rem; text-align: center;
}
.about-hero h1 { font-family: 'Fredoka One', cursive; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: .9rem; }
.about-hero p { opacity: .94; font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.75; }
.about-wrap { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }
.mission-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: stretch; margin-bottom: 5rem;
}
@media(max-width:768px){ .mission-split { grid-template-columns: 1fr; gap: 2.5rem; } }
.mission-text h2 { font-family: 'Fredoka One', cursive; font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
.mission-text p { color: var(--mid); line-height: 1.82; font-size: 1.03rem; margin-bottom: 1rem; }
.mission-visual { border-radius: 0; overflow: hidden; transform: scale(0.9); transform-origin: top center; }

/* ─── VIDEO THUMBNAILS ─────────────────────────────────────── */
.yt-thumb {
  position: relative; border-radius: 0; overflow: hidden;
  cursor: pointer; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.yt-thumb:hover { transform: scale(1.02); box-shadow: 0 14px 40px rgba(0,0,0,0.28); }
.yt-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.yt-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; transition: background 0.25s ease;
}
.yt-thumb:hover .yt-thumb-overlay { background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%); }
.yt-play-btn {
  width: 67px; height: 67px; background: #FF0000; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.68rem; color: white; padding-left: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4); transition: transform 0.2s ease;
}
.yt-thumb:hover .yt-play-btn { transform: scale(1.12); }
.yt-thumb-overlay span { color: white; font-weight: 800; font-size: 1rem; text-shadow: 0 1px 6px rgba(0,0,0,0.7); }

/* ─── VIDEO MODAL ──────────────────────────────────────────── */
.video-modal {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.82); z-index: 9999;
  align-items: center; justify-content: center;
  padding: 1.5rem; backdrop-filter: blur(6px);
}
.video-modal.active { display: flex; }
.video-modal-box {
  position: relative; width: 100%; max-width: 860px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  animation: modalPop 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalPop { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.video-modal-frame { position: relative; padding-bottom: 56.25%; background: #000; }
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-modal-close {
  position: absolute; top: 10px; right: 12px; z-index: 10;
  background: rgba(0,0,0,0.6); color: white; border: none;
  border-radius: 50%; width: 36px; height: 36px; font-size: 1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.video-modal-close:hover { background: var(--red); }

/* ─── GALLERY PAGE ─────────────────────────────────────────── */
.gallery-hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
  color: var(--white); padding: 5.5rem 2rem; text-align: center;
  position: relative;
}
.gallery-hero h1 { font-family: 'Fredoka One', cursive; font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: .9rem; }
.gallery-hero p { opacity: .92; font-size: 1.1rem; max-width: 540px; margin: 0 auto; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem; padding: 4rem 2rem; max-width: 1160px; margin: 0 auto;
}
.social-links {
  display: flex; gap: .75rem; align-items: center;
  position: absolute; top: 1.5rem; right: 2rem;
}
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.3rem; color: var(--white); text-decoration: none;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}
.social-link:hover { transform: translateY(-4px) scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.social-link.youtube   { background: #FF0000; }
.social-link.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-label { color: rgba(255,255,255,.8); font-size: .72rem; font-weight: 800; margin-top: .4rem; letter-spacing: .4px; text-align: center; }
.social-item { display: flex; flex-direction: column; align-items: center; }

/* ─── FOOTER ───────────────────────────────────────────────── */
footer { background: var(--dark); color: var(--white); padding: 3rem 2rem; text-align: center; }
.ft-logo { font-family: 'Fredoka One', cursive; font-size: 1.7rem; color: var(--gold); margin-bottom: .4rem; }
.ft-tag { color: rgba(255,255,255,.55); font-size: .9rem; margin-bottom: 1.6rem; }
.ft-links { display: flex; gap: 2rem; justify-content: center; list-style: none; margin-bottom: 1.8rem; }
.ft-links a {
  color: rgba(255,255,255,.65); font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: .95rem; transition: color .25s;
  text-decoration: none; background: none; border: none; cursor: pointer;
}
.ft-links a:hover { color: var(--gold); }
.ft-copy { color: rgba(255,255,255,.35); font-size: .8rem; }

/* ─── VALUES ───────────────────────────────────────────────── */
.values-hd { text-align: center; margin-bottom: 2.5rem; }
.values-hd h2 { font-family: 'Fredoka One', cursive; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: .7rem; }
.values-hd p { color: var(--mid); font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.75; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.value-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 2rem; box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--red); transition: transform .3s, box-shadow .3s;
}
.value-card:nth-child(2) { border-color: var(--blue); }
.value-card:nth-child(3) { border-color: var(--gold); }
.value-card:nth-child(4) { border-color: #22C55E; }
.value-card:nth-child(5) { border-color: #8B5CF6; }
.value-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.value-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.25rem; margin-bottom: .65rem; }
.value-card p { color: var(--mid); line-height: 1.72; font-size: .95rem; }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media(max-width:600px){
  .stat-bar { gap: 1.5rem; }
  .nav-links a { padding: .4rem .7rem; font-size: .82rem; }
  .age-card { min-width: 120px; }
}
