/* ===================================================
   CURIOUS CUBS MONTESSORI - PUBLIC STYLESHEET
   Color Theme: White & Green | Kid-Friendly
   =================================================== */

:root {
  --green-dark: #2e7d32;
  --green-main: #43a047;
  --green-light: #66bb6a;
  --green-pale: #e8f5e9;
  --green-mint: #c8e6c9;
  --white: #ffffff;
  --text-dark: #2e3d2f;
  --text-mid: #4a5c4b;
  --yellow: #fdd835;
  --orange: #ff9800;
  --pink: #f48fb1;
  --blue: #64b5f6;
  --purple: #b39ddb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== FLOATING SHAPES ===== */
.floating-shapes {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.floating-shapes span {
  position: absolute; display: block; opacity: 0.07;
  animation: floatUp linear infinite;
}
.floating-shapes span:nth-child(1) { width:60px;height:60px;background:var(--green-main);border-radius:50%;left:5%;animation-duration:18s;animation-delay:0s; }
.floating-shapes span:nth-child(2) { width:40px;height:40px;background:var(--yellow);border-radius:8px;left:15%;animation-duration:22s;animation-delay:2s; }
.floating-shapes span:nth-child(3) { width:70px;height:70px;background:var(--pink);border-radius:50%;left:30%;animation-duration:20s;animation-delay:4s; }
.floating-shapes span:nth-child(4) { width:50px;height:50px;background:var(--blue);border-radius:12px;left:50%;animation-duration:25s;animation-delay:1s; }
.floating-shapes span:nth-child(5) { width:45px;height:45px;background:var(--orange);border-radius:50%;left:65%;animation-duration:19s;animation-delay:3s; }
.floating-shapes span:nth-child(6) { width:55px;height:55px;background:var(--purple);border-radius:10px;left:80%;animation-duration:23s;animation-delay:5s; }
.floating-shapes span:nth-child(7) { width:35px;height:35px;background:var(--green-light);border-radius:50%;left:92%;animation-duration:17s;animation-delay:2s; }

@keyframes floatUp {
  0% { transform: translateY(110vh) rotate(0deg) scale(1); }
  50% { transform: translateY(50vh) rotate(180deg) scale(1.2); }
  100% { transform: translateY(-10vh) rotate(360deg) scale(1); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)} }
@keyframes fadeInLeft { from{opacity:0;transform:translateX(-40px)}to{opacity:1;transform:translateX(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(40px)}to{opacity:1;transform:translateX(0)} }
@keyframes bounce { 0%,100%{transform:translateY(0)}50%{transform:translateY(-15px)} }
@keyframes wiggle { 0%,100%{transform:rotate(0)}25%{transform:rotate(5deg)}75%{transform:rotate(-5deg)} }
@keyframes scaleIn { from{opacity:0;transform:scale(0.7)}to{opacity:1;transform:scale(1)} }
@keyframes slideDown { from{opacity:0;transform:translateY(-30px)}to{opacity:1;transform:translateY(0)} }
@keyframes popIn { 0%{opacity:0;transform:scale(0.3)}60%{transform:scale(1.1)}100%{opacity:1;transform:scale(1)} }
@keyframes wave { 0%{transform:rotate(0)}10%{transform:rotate(14deg)}20%{transform:rotate(-8deg)}30%{transform:rotate(14deg)}40%{transform:rotate(-4deg)}50%{transform:rotate(10deg)}60%,100%{transform:rotate(0)} }
@keyframes starTwinkle { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.5;transform:scale(0.7)} }
@keyframes gentlePulse { 0%,100%{transform:scale(1)}50%{transform:scale(1.03)} }

.animate-on-scroll { opacity: 0; transition: all 0.8s ease; }
.animate-on-scroll.visible { opacity: 1; }
.animate-on-scroll.visible.fade-up { animation: fadeInUp 0.8s ease forwards; }
.animate-on-scroll.visible.fade-left { animation: fadeInLeft 0.8s ease forwards; }
.animate-on-scroll.visible.fade-right { animation: fadeInRight 0.8s ease forwards; }
.animate-on-scroll.visible.scale-in { animation: scaleIn 0.8s ease forwards; }
.animate-on-scroll.visible.pop-in { animation: popIn 0.6s ease forwards; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1001;
  padding: 10px 24px; text-align: center;
  font-weight: 700; font-size: 0.9rem;
  animation: slideDown 0.5s ease;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.announcement-bar.info { background: var(--blue); color: #fff; }
.announcement-bar.success { background: var(--green-main); color: #fff; }
.announcement-bar.warning { background: var(--orange); color: #fff; }
.announcement-bar.celebration { background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue)); color: #fff; }
.announcement-bar .close-ann { background:none;border:none;color:#fff;font-size:1.2rem;cursor:pointer;margin-left:16px; }
.has-announcement nav { top: 40px; }
.has-announcement .hero { padding-top: 160px; }

/* ===== NAVBAR ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(46,125,50,0.1);
  animation: slideDown 0.6s ease;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 24px;
}
.logo-group {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

/* ===== NAV LOGO IMAGE ===== */
.nav-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.logo-group:hover .nav-logo {
  transform: scale(1.05);
}

.logo-text { font-family: 'Fredoka One', cursive; font-size: 1.3rem; color: var(--green-dark); line-height: 1.2; }
.logo-text small { font-family: 'Nunito', sans-serif; font-size: 0.65rem; font-weight: 600; color: var(--green-light); letter-spacing: 2px; display: block; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text-mid);
  font-weight: 700; font-size: 0.9rem;
  padding: 8px 16px; border-radius: 25px;
  transition: all 0.3s ease;
}
.nav-links a:hover { background: var(--green-pale); color: var(--green-dark); transform: translateY(-2px); }
.nav-cta {
  background: linear-gradient(135deg, var(--green-main), var(--green-light)) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(67,160,71,0.3);
}
.menu-toggle { display: none; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--green-dark); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(170deg, var(--white) 0%, var(--green-pale) 50%, var(--green-mint) 100%);
  padding: 120px 24px 80px; position: relative; text-align: center;
}
.hero-content { max-width: 800px; position: relative; z-index: 1; }

/* ===== HERO LOGO ===== */
.hero-logo-wrap {
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  animation: gentlePulse 4s ease-in-out infinite;
}

/* ===== HERO TAGLINE ===== */
.hero-tagline {
  font-family: 'Fredoka One', cursive;
  font-size: 1.3rem;
  color: var(--green-main);
  margin: -8px auto 24px;
  letter-spacing: 2px;
  animation: fadeInUp 0.8s ease 0.5s both;
  opacity: 1 !important;
}

.hero h1 {
  font-family: 'Fredoka One', cursive; font-size: 3.5rem; line-height: 1.15;
  color: var(--green-dark); margin-bottom: 16px; animation: fadeInUp 0.8s ease 0.4s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 1.2rem; color: var(--text-mid); max-width: 600px; margin: 0 auto 32px; line-height: 1.7; animation: fadeInUp 0.8s ease 0.6s both; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.8s both; }
.btn {
  padding: 14px 32px; border-radius: 50px; font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 1rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-main), var(--green-light)); color: var(--white);
  box-shadow: 0 6px 25px rgba(67,160,71,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(67,160,71,0.45); }
.btn-outline { background: var(--white); color: var(--green-dark); border: 2px solid var(--green-light); }
.btn-outline:hover { background: var(--green-pale); transform: translateY(-3px); }
.hero-deco { position: absolute; font-size: 2.5rem; opacity: 0.5; animation: bounce 4s ease-in-out infinite; }
.hero-deco:nth-child(1) { top:15%;left:8%;animation-delay:0s; }
.hero-deco:nth-child(2) { top:20%;right:8%;animation-delay:0.5s; }
.hero-deco:nth-child(3) { bottom:20%;left:12%;animation-delay:1s; }
.hero-deco:nth-child(4) { bottom:15%;right:10%;animation-delay:1.5s; }
.hero-deco:nth-child(5) { top:40%;left:3%;animation-delay:0.7s;font-size:2rem; }
.hero-deco:nth-child(6) { top:35%;right:3%;animation-delay:1.2s;font-size:2rem; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--white); padding: 40px 24px; position: relative; z-index: 2; margin-top: -40px; }
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: var(--white); border-radius: 24px; padding: 32px;
  box-shadow: 0 10px 50px rgba(46,125,50,0.08);
}
.stat-item { text-align: center; }
.stat-icon { font-size: 2rem; margin-bottom: 8px; animation: wiggle 3s ease-in-out infinite; display: inline-block; }
.stat-num { font-family: 'Fredoka One', cursive; font-size: 1.8rem; color: var(--green-dark); }
.stat-label { font-size: 0.85rem; color: var(--text-mid); font-weight: 600; }

/* ===== SECTIONS COMMON ===== */
section { position: relative; z-index: 1; padding: 80px 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--green-pale); color: var(--green-dark);
  padding: 6px 20px; border-radius: 50px; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.section-header h2 { font-family: 'Fredoka One', cursive; font-size: 2.5rem; color: var(--green-dark); margin-bottom: 12px; }
.section-header p { font-size: 1.1rem; color: var(--text-mid); max-width: 550px; margin: 0 auto; line-height: 1.6; }

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--green-pale), var(--green-mint));
  border-radius: 24px; padding: 48px; text-align: center; position: relative; overflow: hidden;
}

/* ===== ABOUT LOGO IMAGE ===== */
.about-logo-img {
  max-width: 280px;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  animation: gentlePulse 5s ease-in-out infinite;
}

.about-visual .deco { position: absolute; font-size: 2rem; opacity: 0.4; }
.about-visual .deco:nth-child(2) { top:10%;left:10%;animation:starTwinkle 2s ease infinite; }
.about-visual .deco:nth-child(3) { top:15%;right:15%;animation:starTwinkle 2.5s ease infinite 0.5s; }
.about-visual .deco:nth-child(4) { bottom:10%;left:20%;animation:starTwinkle 3s ease infinite 1s; }
.about-visual .deco:nth-child(5) { bottom:15%;right:10%;animation:wiggle 3s ease infinite; }
.about-text h3 { font-family: 'Fredoka One', cursive; font-size: 2rem; color: var(--green-dark); margin-bottom: 16px; }
.about-text p { color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; font-size: 1.05rem; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.value-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--green-pale); padding: 12px 16px; border-radius: 14px;
  font-weight: 700; font-size: 0.9rem; color: var(--green-dark);
  transition: transform 0.3s ease;
}
.value-chip:hover { transform: translateY(-3px); }

/* ===== PROGRAMS ===== */
.programs { background: linear-gradient(180deg, var(--green-pale) 0%, var(--white) 100%); }
.programs-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.program-card {
  background: var(--white); border-radius: 24px; padding: 40px 32px;
  text-align: center; box-shadow: 0 8px 40px rgba(46,125,50,0.06);
  transition: all 0.4s ease; position: relative; overflow: hidden;
}
.program-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px; border-radius: 24px 24px 0 0; }
.program-card:nth-child(1)::before { background: linear-gradient(90deg, var(--yellow), var(--orange)); }
.program-card:nth-child(2)::before { background: linear-gradient(90deg, var(--green-main), var(--green-light)); }
.program-card:nth-child(3)::before { background: linear-gradient(90deg, var(--blue), var(--purple)); }
.program-card:nth-child(4)::before { background: linear-gradient(90deg, var(--pink), var(--orange)); }
.program-card:nth-child(5)::before { background: linear-gradient(90deg, var(--purple), var(--blue)); }
.program-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(46,125,50,0.12); }
.program-icon {
  width: 80px; height: 80px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; margin: 0 auto 20px; transition: transform 0.3s ease;
  background: linear-gradient(135deg, var(--green-pale), var(--green-mint));
}
.program-card:hover .program-icon { animation: wiggle 0.5s ease; }
.program-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: var(--green-dark); margin-bottom: 4px; }
.program-age {
  display: inline-block; background: var(--green-pale); color: var(--green-dark);
  padding: 4px 14px; border-radius: 20px; font-weight: 700; font-size: 0.75rem; margin-bottom: 16px;
}
.program-card p { color: var(--text-mid); line-height: 1.7; font-size: 0.95rem; }
.program-features { list-style: none; margin-top: 20px; text-align: left; }
.program-features li { padding: 6px 0; color: var(--text-mid); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }
.program-features li::before { content: '✅'; font-size: 0.8rem; }

/* ===== FACILITIES ===== */
.facilities { background: var(--white); }
.facilities-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.facility-card {
  background: var(--green-pale); border-radius: 20px; padding: 32px 24px;
  text-align: center; transition: all 0.3s ease;
}
.facility-card:hover { transform: translateY(-5px); background: var(--green-mint); }
.facility-emoji { font-size: 2.8rem; margin-bottom: 12px; display: inline-block; animation: bounce 3s ease-in-out infinite; }
.facility-card h4 { font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: var(--green-dark); margin-bottom: 6px; }
.facility-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

/* ===== GALLERY ===== */
.gallery { background: linear-gradient(180deg, var(--green-pale) 0%, var(--white) 100%); }
.gallery-filters {
  display: flex; justify-content: center; gap: 10px; margin-bottom: 32px; flex-wrap: wrap;
  max-width: 1100px; margin-left: auto; margin-right: auto; margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 50px; border: 2px solid var(--green-light);
  background: var(--white); color: var(--green-dark); font-weight: 700;
  font-size: 0.85rem; cursor: pointer; transition: all 0.3s ease;
  font-family: 'Nunito', sans-serif;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--green-main); color: var(--white); border-color: var(--green-main);
}
.gallery-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gallery-item {
  aspect-ratio: 4/3; border-radius: 20px; overflow: hidden;
  position: relative; cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(46,125,50,0.06);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(46,125,50,0.12); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: white; padding: 16px; font-weight: 700; font-size: 0.85rem;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.gallery-item:hover .caption { transform: translateY(0); }

.gallery-placeholder {
  aspect-ratio: 4/3; background: var(--white); border-radius: 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(46,125,50,0.06); border: 3px dashed var(--green-mint);
  transition: all 0.3s ease;
}
.gallery-placeholder:hover { transform: scale(1.03); border-color: var(--green-light); }
.gallery-placeholder .gp-icon { font-size: 3rem; margin-bottom: 8px; opacity: 0.5; }
.gallery-placeholder .gp-text { font-size: 0.85rem; color: var(--text-mid); font-weight: 600; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.92); z-index: 2000;
  align-items: center; justify-content: center; flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 85%; max-height: 80vh; border-radius: 12px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 30px;
  background: none; border: none; color: white; font-size: 2.5rem; cursor: pointer;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; color: white;
  font-size: 2rem; padding: 16px 20px; cursor: pointer; border-radius: 12px;
  transition: background 0.3s ease;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption { color: white; text-align: center; margin-top: 16px; font-weight: 700; font-size: 1.1rem; }

/* ===== WHY CHOOSE US ===== */
.why-us { background: var(--white); }
.why-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--green-pale); border-radius: 20px; padding: 28px; transition: all 0.3s ease;
}
.why-card:hover { transform: translateX(5px); background: var(--green-mint); }
.why-icon {
  flex-shrink: 0; width: 56px; height: 56px; background: var(--white);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 15px rgba(46,125,50,0.1);
}
.why-card h4 { font-family: 'Fredoka One', cursive; font-size: 1.05rem; color: var(--green-dark); margin-bottom: 4px; }
.why-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.5; }

/* ===== CONTACT ===== */
.contact { background: linear-gradient(170deg, var(--green-dark) 0%, var(--green-main) 100%); color: var(--white); }
.contact .section-tag { background: rgba(255,255,255,0.15); color: var(--white); }
.contact .section-header h2 { color: var(--white); }
.contact .section-header p { color: rgba(255,255,255,0.8); }
.contact-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.1); padding: 20px; border-radius: 16px;
  transition: all 0.3s ease;
}
.contact-item:hover { background: rgba(255,255,255,0.18); transform: translateX(5px); }
.contact-icon {
  width: 48px; height: 48px; background: rgba(255,255,255,0.15);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-item h4 { font-size: 0.8rem; opacity: 0.7; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-item p { font-size: 1rem; font-weight: 700; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 16px 20px; border: 2px solid rgba(255,255,255,0.2);
  border-radius: 14px; background: rgba(255,255,255,0.1);
  color: var(--white); font-family: 'Nunito', sans-serif;
  font-size: 0.95rem; font-weight: 600; transition: all 0.3s ease; outline: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.contact-form input:focus, .contact-form textarea:focus { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); }
.contact-form textarea { height: 120px; resize: none; }
.btn-white {
  background: var(--white); color: var(--green-dark);
  padding: 16px 32px; border: none; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1rem;
  cursor: pointer; transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }

/* ===== FOOTER ===== */
footer {
  background: #1b5e20; color: rgba(255,255,255,0.7);
  text-align: center; padding: 40px 24px;
}
.footer-logo-wrap {
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 70px;
  width: auto;
  border-radius: 12px;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: 'Fredoka One', cursive;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  letter-spacing: 1px;
}
footer p { font-size: 0.85rem; }
footer .footer-hearts { margin-top: 12px; font-size: 1.2rem; letter-spacing: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 74px; left: 0; width: 100%;
    background: var(--white); padding: 16px 24px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08); border-radius: 0 0 20px 20px;
  }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 2.4rem; }
  .hero-logo { max-width: 240px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; max-width: 400px; }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-deco { display: none; }
}
@media (max-width: 500px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); padding: 24px 16px; }
  .facilities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 2rem; }
  .hero-logo { max-width: 200px; }
  .nav-logo { height: 45px; }
}
