/* ============== Base ============== */
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* Selection */
::selection { background: #FFD56B; color: #1F2A44; }

/* ============== Header ============== */
#site-header.scrolled {
  background: rgba(255, 248, 238, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(31, 42, 68, 0.06);
}

.nav-link {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: \"\";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 3px;
  border-radius: 999px;
  background: #FF7A59;
  transition: width 0.3s ease;
}
.nav-link:hover { color: #FF7A59; }
.nav-link:hover::after { width: 100%; }

/* ============== Reusable text ============== */
.kicker {
  display: inline-block;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FF7A59;
  background: rgba(255, 122, 89, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
}

.section-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ============== Hero blobs ============== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.blob-1 { width: 380px; height: 380px; background: #FFD56B; top: -100px; right: -120px; }
.blob-2 { width: 320px; height: 320px; background: #A7E8BD; bottom: -120px; left: -80px; }
.blob-3 { width: 260px; height: 260px; background: #FFD7C9; top: 40%; left: 35%; opacity: 0.4; }

/* ============== Feature Pills ============== */
.feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF8EE;
  border: 1px solid rgba(31, 42, 68, 0.08);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 42, 68, 0.06);
}

/* ============== Program Cards ============== */
.program-card {
  border-radius: 1.75rem;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(31, 42, 68, 0.04);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(31, 42, 68, 0.10);
}

/* ============== Facilities ============== */
.facility {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 1.5rem;
  padding: 26px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.facility:hover { background: rgba(255, 255, 255, 0.10); transform: translateY(-4px); }
.facility h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 14px;
  margin-bottom: 6px;
}
.facility p { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; }

/* ============== Gallery ============== */
.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 1.25rem;
  cursor: zoom-in;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 36px rgba(31, 42, 68, 0.12);
}
@media (min-width: 1024px) {
  .gallery-img { height: 220px; }
}

#lightbox.show { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============== Events ============== */
.event-card {
  position: relative;
  background: #FFF8EE;
  border: 1px solid rgba(31, 42, 68, 0.06);
  border-radius: 1.75rem;
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(31, 42, 68, 0.08);
}
.event-date {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: #1F2A44;
  color: #FFD56B;
  border-radius: 1rem;
  padding: 10px 16px;
  font-family: 'Fredoka', sans-serif;
  line-height: 1;
}
.event-date .day { font-size: 1.6rem; font-weight: 700; }
.event-date .month { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; }

.tag {
  display: inline-block;
  margin-left: 12px;
  margin-top: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============== Testimonials ============== */
.testimonial {
  background: white;
  border-radius: 1.75rem;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(31, 42, 68, 0.05);
  transition: transform 0.3s ease;
}
.testimonial:hover { transform: translateY(-4px); }

/* ============== Form ============== */
.form-field { display: block; }
.form-field span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1F2A44;
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 0.85rem;
  border: 1px solid rgba(31, 42, 68, 0.15);
  background: #FFF8EE;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #1F2A44;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #FF7A59;
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.15);
}

/* ============== Contact ============== */
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.icon-wrap {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ============== Footer ============== */
.social-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-icon:hover { background: #FF7A59; transform: translateY(-2px); }

/* ============== Reveal animation ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== WhatsApp pulse ============== */
#wa-float {
  animation: wa-pulse 2.4s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ============== Reduced motion ============== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  #wa-float { animation: none; }
  html { scroll-behavior: auto; }
}
"
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}" --new-str "/* ============== Reveal animation ============== */
.js-active .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-active .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
