/* Eventus Kids */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', system-ui, sans-serif; color: #444; background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
fieldset { border: none; }

h1, h2, h3 { color: #1B3A6B; font-weight: 800; line-height: 1.25; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -100%; left: 1rem; z-index: 9999; padding: .5rem 1rem; background: #1B3A6B; color: #fff; border-radius: 8px; font-weight: 700; font-size: .875rem; }
.skip-link:focus { top: .5rem; }
:focus-visible { outline: 3px solid #1B3A6B; outline-offset: 2px; }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 1.25rem; }
.wrap--sm { max-width: 600px; }

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
}
.nav { display: flex; align-items: center; justify-content: space-between; max-width: 1060px; margin: 0 auto; padding: 0 1.25rem; height: 72px; }
.nav__logo { z-index: 101; display: flex; align-items: center; gap: .6rem; }
.nav__logo img { height: 48px; width: auto; }
.nav__logo-name { font-size: 1.1rem; font-weight: 800; color: #1B3A6B; }
.nav__links { display: none; gap: 1.75rem; align-items: center; }
.nav__link { font-size: .875rem; font-weight: 700; color: #555; transition: color .15s; }
.nav__link:hover { color: #1B3A6B; }
.nav__link--cta { background: #1B3A6B; color: #fff; padding: .4rem 1rem; border-radius: 8px; }
.nav__link--cta:hover { background: #2A5298; color: #fff; }
.nav__actions { display: flex; align-items: center; gap: .75rem; z-index: 101; }
.lang-toggle { background: #f5f5f5; border: none; cursor: pointer; font-size: .7rem; font-weight: 800; padding: .35rem .6rem; border-radius: 6px; color: #888; display: flex; align-items: center; gap: .15rem; letter-spacing: .03em; }
.lang-toggle__option { opacity: .4; }
.lang-toggle__option--active { opacity: 1; color: #1B3A6B; }
.lang-toggle__divider { opacity: .25; margin: 0 .1rem; }
.nav__burger { display: flex; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 4px; width: 26px; }
.nav__burger-line { height: 2px; background: #555; border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav__links.is-open { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.75rem; position: fixed; inset: 0; background: #fff; z-index: 99; }
.nav__links.is-open .nav__link { font-size: 1.25rem; }
.nav__links.is-open .nav__link--cta { font-size: 1.1rem; padding: .65rem 1.75rem; }

/* ── HERO ── */
.hero { position: relative; display: flex; align-items: center; min-height: 480px; padding: calc(72px + 3rem) 1.25rem 3rem; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: rgba(27,58,107,.65); }
.hero__inner { position: relative; z-index: 1; max-width: 1060px; margin: 0 auto; padding: 0 1.25rem; width: 100%; }
.hero__title { font-size: clamp(1.6rem, 4vw, 2.25rem); margin-bottom: .6rem; max-width: 500px; color: #fff; }
.hero__sub { color: rgba(255,255,255,.85); margin-bottom: .75rem; font-size: clamp(.9rem, 1.8vw, 1.05rem); max-width: 480px; }
.hero__desc { color: rgba(255,255,255,.75); margin-bottom: .5rem; font-size: .9rem; max-width: 480px; }
.hero__tagline { color: #fff; font-weight: 800; margin-bottom: .25rem; font-size: .95rem; }
.hero__location { color: rgba(255,255,255,.6); font-size: .8rem; font-weight: 700; letter-spacing: .02em; margin-bottom: 1.5rem; }
.hero__btns { display: flex; flex-direction: column; gap: .6rem; align-items: flex-start; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .7rem 1.5rem; font-weight: 700; font-size: .9rem; border-radius: 8px; border: 2px solid transparent; cursor: pointer; transition: background .15s, transform .15s, box-shadow .15s; }
.btn:active { transform: scale(.98); }
.btn--primary { background: #1B3A6B; color: #fff; border-color: #1B3A6B; }
.btn--primary:hover { background: #2A5298; border-color: #2A5298; }
.btn--ghost { background: #fff; color: #1B3A6B; border-color: #ddd; }
.btn--ghost:hover { border-color: #1B3A6B; background: #f7f9fc; }
.btn--white { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.4); }
.btn--white:hover { background: rgba(255,255,255,.25); border-color: #fff; }
.btn--full { width: 100%; }
.btn--lg { padding: .8rem 1.75rem; font-size: .95rem; }

/* ── INFO STRIP ── */
.info-strip { padding: .85rem 0; border-bottom: 1px solid #eee; }
.info-strip__row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: .4rem .75rem; font-size: .8rem; font-weight: 700; color: #555; letter-spacing: .01em; }
.info-strip__dot { width: 4px; height: 4px; border-radius: 50%; background: #ccc; display: inline-block; }

/* ── SECTION ── */
.sec { padding: 3.5rem 0; }
.sec--gray { background: #fafafa; }
.sec__title { font-size: clamp(1.35rem, 3vw, 1.75rem); margin-bottom: .75rem; }
.sec__title--center { text-align: center; }
.sec__title--left { text-align: left; }

.wrap--md { max-width: 700px; }

/* ── SHARED LIST ── */
.check-list { margin: .5rem 0 1rem 1.25rem; }
.check-list li { position: relative; padding: .25rem 0 .25rem .25rem; color: #555; font-size: .95rem; list-style: disc; }

/* ── INTRO ── */
.intro__text { font-size: clamp(1rem, 2vw, 1.15rem); color: #555; text-align: center; line-height: 1.8; }

/* ── NOTICED ── */
.noticed__lead { color: #555; margin-bottom: .25rem; }
.noticed__list { margin: .25rem 0 0 1.25rem; }
.noticed__list li { padding: .25rem 0; color: #555; font-size: .95rem; list-style: disc; }

/* ── SESSIONS ── */
#sessions p { color: #555; margin-bottom: .75rem; line-height: 1.7; font-size: .95rem; }

/* ── OUTCOMES ── */
.outcomes__lead { color: #555; margin-bottom: .5rem; font-size: .95rem; }
.outcomes__highlight { margin-top: 1rem; font-size: 1.1rem; font-weight: 800; color: #1B3A6B; }

/* ── PROGRAM CARDS (landing page) ── */
.pcards { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.pcard { display: block; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid #eee; transition: transform .2s, box-shadow .2s; }
.pcard:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.07); }
.pcard__img { height: 160px; width: 100%; object-fit: cover; }
.pcard__body { padding: 1rem; }
.pcard__title { font-size: 1.05rem; }
.programs__more { text-align: center; }

/* ── PAGE TOP (for non-hero pages) ── */
.page-top { padding-top: calc(72px + 2.5rem); }

/* ── PROGRAMS (side-by-side) ── */
.program { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.program:last-child { margin-bottom: 0; }
.program__img { width: 100%; border-radius: 12px; object-fit: cover; max-height: 280px; }
.program__body p { color: #555; margin-bottom: .5rem; line-height: 1.7; font-size: .95rem; }
.program__title { font-size: 1.25rem; margin-bottom: .5rem; }

/* ── OPEN / WHY ── */
#open p, #why p { color: #555; margin-bottom: .5rem; line-height: 1.7; font-size: .95rem; }
.why__closing { margin-top: 1rem; font-size: 1.05rem; font-weight: 800; color: #1B3A6B; }

/* ── REGISTER NOTES ── */
.register__note { text-align: center; color: #888; font-size: .9rem; margin-bottom: .25rem; }

/* ── ABOUT ── */
.about__grid { display: flex; flex-direction: column; gap: 1.5rem; }
.about__img { border-radius: 12px; width: 100%; object-fit: cover; max-height: 360px; }
.about__body p { color: #666; margin-bottom: .75rem; line-height: 1.7; font-size: .95rem; }
.about__body .btn { margin-top: .5rem; }

/* ── REVIEWS ── */
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1.5rem; }
.rcard { background: #fff; border-radius: 12px; padding: 1.25rem; border: 1px solid #eee; position: relative; }
.rcard::before { content: '\201C'; position: absolute; top: .25rem; left: .85rem; font-size: 2.5rem; color: #c5d4e8; font-family: Georgia, serif; line-height: 1; }
.rcard__text { padding-top: 1.25rem; font-size: .875rem; line-height: 1.7; color: #555; font-style: italic; }

/* ── TEACHERS ── */
.teachers__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.teacher { text-align: center; }
.teacher__photo { width: 88px; height: 88px; border-radius: 50%; margin: 0 auto .6rem; background: #f0f0f0; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.teacher__name { font-size: .95rem; margin-bottom: .1rem; }
.teacher__role { font-size: .8rem; color: #999; }

/* ── SCHEDULE ── */
.sched__grid { display: flex; flex-direction: column; gap: 1.5rem; }
.sched__slots { display: flex; gap: .75rem; margin-bottom: 1rem; }
.sched__slot { flex: 1; text-align: center; padding: 1rem; background: #f7f9fc; border-radius: 12px; }
.sched__slot-label { display: block; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #999; margin-bottom: .2rem; }
.sched__slot-time { display: block; font-size: 1.15rem; font-weight: 800; color: #1B3A6B; }
.sched__details p { margin-bottom: .3rem; font-size: .9rem; }
.sched__details strong { color: #1B3A6B; }
.sched__note { color: #888; margin: .75rem 0 .5rem; font-size: .9rem; line-height: 1.6; }
.sched__cta { font-weight: 700; color: #1B3A6B; font-size: .95rem; }
.sched__map iframe { width: 100%; min-height: 200px; border-radius: 12px; border: none; }

/* ── FORM ── */
.register { padding: 3.5rem 0; background: #fafafa; }
.register__sub { text-align: center; color: #888; margin-bottom: 1.75rem; font-size: .95rem; max-width: 400px; margin-left: auto; margin-right: auto; }
.form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form__row { display: flex; flex-direction: column; gap: .85rem; }
.form__group { margin-bottom: .85rem; }
.form__label { display: block; font-size: .7rem; font-weight: 800; color: #999; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .3rem; }
.form__input { display: block; width: 100%; padding: .6rem .8rem; font-size: .9rem; color: #333; background: #fff; border: 1.5px solid #ddd; border-radius: 8px; transition: border-color .15s; }
.form__input:focus { outline: none; border-color: #1B3A6B; box-shadow: 0 0 0 3px rgba(27,58,107,.08); }
.form__input.is-invalid { border-color: #EF4444; }
.form__radios { display: flex; gap: 1.25rem; padding-top: .2rem; }
.form__radio-label { display: flex; align-items: center; gap: .35rem; cursor: pointer; font-size: .9rem; }
.form__radio { accent-color: #1B3A6B; width: 16px; height: 16px; }
.form__error { display: block; font-size: .7rem; color: #EF4444; margin-top: .2rem; min-height: .9em; }
.form__status { text-align: center; margin-bottom: .6rem; font-size: .85rem; }
.form__status.is-error { color: #EF4444; }
.form__submit { margin-top: .4rem; }
.form__success { text-align: center; padding: 2.5rem 0; }
.form__success-icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: #E8F5E9; color: #43A047; font-size: 1.2rem; margin-bottom: .6rem; }
.form__success-text { font-size: 1.1rem; font-weight: 800; color: #1B3A6B; margin-bottom: .3rem; }

/* ── WHATSAPP ── */
.whatsapp-fab { position: fixed; bottom: 1.1rem; right: 1.1rem; z-index: 90; display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; border-radius: 50%; background: #25D366; color: #fff; box-shadow: 0 3px 10px rgba(0,0,0,.15); transition: transform .15s; }
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab__icon { width: 26px; height: 26px; }

/* ── FOOTER ── */
.footer { background: #1B3A6B; padding: 2rem 0 1rem; color: rgba(255,255,255,.65); }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; margin-bottom: 1rem; }
.footer__brand { font-size: 1.1rem; font-weight: 800; color: #fff; letter-spacing: .01em; }
.footer__tagline { font-size: .8rem; margin-top: .2rem; }
.footer__contact { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.footer__link { font-size: .85rem; transition: color .15s; }
.footer__link:hover { color: #fff; }
.footer__social { display: flex; gap: 1.25rem; }
.footer__social-link { font-size: .8rem; font-weight: 700; transition: color .15s; }
.footer__social-link:hover { color: #fff; }
.footer__copy { text-align: center; font-size: .65rem; opacity: .35; }

/* ── ANIMATIONS ── */
.anim { opacity: 0; transform: translateY(14px); transition: opacity .45s ease, transform .45s ease; }
.anim.is-visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
  .hero__btns { flex-direction: row; }
  .pcards { grid-template-columns: repeat(3, 1fr); }
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
  .form__row { flex-direction: row; }
  .form__row .form__group { flex: 1; }
}
@media (min-width: 768px) {
  .nav__burger { display: none; }
  .nav__links { display: flex; }
  .sec { padding: 4.5rem 0; }
  .about__grid { flex-direction: row; align-items: center; gap: 2.5rem; }
  .about__img { flex: 1; min-height: 300px; object-fit: cover; }
  .about__body { flex: 1; }
  .program { flex-direction: row; align-items: center; }
  .program--reverse { flex-direction: row-reverse; }
  .program__img { flex: 1; max-height: 320px; min-height: 240px; }
  .program__body { flex: 1; }
  .sched__grid { flex-direction: row; gap: 2.5rem; }
  .sched__info, .sched__map { flex: 1; }
  .footer__inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer__contact { flex-direction: row; gap: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .anim { opacity: 1; transform: none; }
}
