*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yellow:  #FFE57F;
  --orange:  #FFAB76;
  --green:   #7CC47A;
  --blue:    #7AB8F5;
  --pink:    #F5A0C8;
  --purple:  #C5A0E0;
  --red:     #F5867A;
  --white:   #FFFFFF;
  --offwhite:#FFF9F2;
  --ink:     #2D2D2D;
  --muted:   #7A7A7A;
  --green-dark: #4E9C4C;
  --blue-dark:  #3A7FCC;
  --orange-dark:#D97A3A;
  --r-lg:    20px;
  --r-xl:    32px;
  --r-pill:  999px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--offwhite); color: var(--ink); font-size: 16px; line-height: 1.6; }

/* ══ NAV ══════════════════════════════════════════════════════ */
nav {
  background: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  height: 72px;
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 0 #EEE;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 52px; width: auto; }
.nav-links { display: flex; gap: 0; }
.nav-links a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 0.85rem; padding: 0 0.75rem; transition: color 0.15s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.25rem; cursor: pointer; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0;
  background: #fff; border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  min-width: 220px; padding: 0.5rem;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: all 0.2s; z-index: 300;
  border: 1px solid #F0F0F0;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown-menu a { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.9rem; border-radius: 8px; color: var(--ink) !important; font-size: 0.85rem; font-weight: 700; }
.nav-dropdown-menu a:hover { background: var(--offwhite); color: var(--green-dark) !important; }
.nav-cta { background: var(--green); color: #fff; font-weight: 800; font-size: 0.9rem; padding: 0.5rem 1.25rem; border-radius: var(--r-pill); text-decoration: none; white-space: nowrap; box-shadow: 0 3px 0 var(--green-dark); transition: transform 0.1s, box-shadow 0.1s; margin-left: 0.5rem; color: #fff !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 5px 0 var(--green-dark); }
@media (max-width: 768px) { .nav-links { display: none; } }

/* ══ BREADCRUMB ═══════════════════════════════════════════════ */
.breadcrumb { padding: 0.75rem clamp(1.5rem,5vw,4rem); font-size: 0.8rem; font-weight: 700; color: var(--muted); background: #fff; border-bottom: 1px solid #EEE; }
.breadcrumb a { color: var(--green-dark); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.4rem; }

/* ══ PAGE HERO ════════════════════════════════════════════════ */
.page-hero { padding: clamp(3rem,8vw,5rem) clamp(1.5rem,5vw,4rem); position: relative; overflow: hidden; }
.page-hero .shape { position: absolute; border-radius: 50%; opacity: 0.3; pointer-events: none; }
.page-hero .shape-1 { width:200px;height:200px;top:-80px;right:10%; }
.page-hero .shape-2 { width:100px;height:100px;bottom:-30px;left:5%; }
.page-hero-tag { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 800; font-size: 0.8rem; letter-spacing: 0.05em; padding: 0.3rem 0.9rem; border-radius: var(--r-pill); margin-bottom: 1rem; text-transform: uppercase; box-shadow: 0 2px 0 rgba(0,0,0,0.1); }
.page-hero h1 { font-family: 'Fredoka One', cursive; font-size: clamp(2.2rem,5vw,3.5rem); line-height: 1.1; color: var(--ink); margin-bottom: 1rem; }
.page-hero p { font-size: 1.05rem; font-weight: 600; color: rgba(0,0,0,0.55); max-width: 50ch; }

/* ══ SECTIONS ═════════════════════════════════════════════════ */
.section { padding: clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,4rem); }
.section.white { background: #fff; }
.section.offwhite { background: var(--offwhite); }
.section-title { font-family: 'Fredoka One', cursive; font-size: clamp(1.8rem,4vw,2.5rem); margin-bottom: 0.4rem; letter-spacing: -0.3px; }
.section-sub { color: var(--muted); font-size: 1rem; font-weight: 600; margin-bottom: 2.5rem; }

/* ══ CARDS ════════════════════════════════════════════════════ */
.card { background: #fff; border-radius: var(--r-xl); padding: 2rem; box-shadow: 0 4px 0 #E8E8E8; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.25rem; }

/* ══ ACTIVITY CONTENT ═════════════════════════════════════════ */
.activity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin-bottom: 3rem; }
@media(max-width:700px){ .activity-grid { grid-template-columns: 1fr; } .activity-grid .illo { display:none; } }
.activity-illo { font-size: 8rem; text-align: center; line-height: 1; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.activity-list { list-style: none; margin-top: 1rem; }
.activity-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; border-bottom: 2px dashed #EEE; font-weight: 600; font-size: 0.95rem; }
.activity-list li:last-child { border-bottom: none; }
.activity-list li span { font-size: 1.2rem; flex-shrink: 0; }

/* ══ INFOBANNER ═══════════════════════════════════════════════ */
.infobanner { background: var(--green); padding: 2rem clamp(1.5rem,5vw,4rem); display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; justify-content: space-between; }
.infoband-item { display: flex; align-items: center; gap: 0.75rem; }
.infoband-icon { font-size: 1.75rem; }
.infoband-label { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.1em; }
.infoband-val { font-family: 'Fredoka One', cursive; font-size: 1.2rem; color: #fff; }

/* ══ CTA STRIP ════════════════════════════════════════════════ */
.cta-strip { background: var(--yellow); padding: 3rem clamp(1.5rem,5vw,4rem); text-align: center; }
.cta-strip h2 { font-family: 'Fredoka One', cursive; font-size: clamp(1.8rem,4vw,2.5rem); margin-bottom: 0.75rem; color: var(--ink); }
.cta-strip p { font-size: 1rem; font-weight: 600; color: rgba(0,0,0,0.55); margin-bottom: 2rem; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family:'Nunito',sans-serif; font-weight: 800; font-size: 1rem; padding: 0.875rem 2rem; border-radius: var(--r-pill); text-decoration: none; transition: transform 0.1s, box-shadow 0.1s; }
.btn:hover { transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: #fff; box-shadow: 0 4px 0 var(--blue-dark); }
.btn-blue:hover { box-shadow: 0 6px 0 var(--blue-dark); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 4px 0 var(--green-dark); }
.btn-green:hover { box-shadow: 0 6px 0 var(--green-dark); }
.btn-white { background: #fff; color: var(--ink); box-shadow: 0 4px 0 rgba(0,0,0,0.12); }
.btn-white:hover { box-shadow: 0 6px 0 rgba(0,0,0,0.12); }

/* ══ CHIPS ════════════════════════════════════════════════════ */
.chip { background: rgba(255,255,255,0.85); color: var(--ink); font-weight: 700; font-size: 0.85rem; padding: 0.35rem 0.85rem; border-radius: var(--r-pill); display: inline-flex; align-items: center; gap: 0.35rem; box-shadow: 0 2px 0 rgba(0,0,0,0.08); }
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.25rem 0; }

/* ══ ACTIVITY NAV CARDS ═══════════════════════════════════════ */
.act-nav-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 1rem; margin-top: 2rem; }
.act-nav-card { border-radius: var(--r-xl); padding: 1.5rem 1rem; text-align: center; text-decoration: none; color: var(--ink); box-shadow: 0 4px 0 rgba(0,0,0,0.06); transition: transform 0.15s, box-shadow 0.15s; display: block; }
.act-nav-card:hover { transform: translateY(-4px); box-shadow: 0 8px 0 rgba(0,0,0,0.06); }
.act-nav-card.active { outline: 3px solid var(--ink); }
.act-nav-card .icon { font-size: 2.2rem; margin-bottom: 0.5rem; }
.act-nav-card .name { font-family: 'Fredoka One', cursive; font-size: 1rem; }
.act-nav-card.c1 { background: #FFF3DC; }
.act-nav-card.c2 { background: #FFE8F2; }
.act-nav-card.c3 { background: #E0F4DF; }
.act-nav-card.c4 { background: #F0E4F8; }
.act-nav-card.c5 { background: #DCF0FF; }

/* ══ FORM ═════════════════════════════════════════════════════ */
.form-card { background: #fff; border-radius: var(--r-xl); padding: 2rem; box-shadow: 0 6px 0 rgba(0,0,0,0.06); }
.form-section-label { font-family: 'Fredoka One', cursive; font-size: 1.1rem; color: var(--blue-dark); display: flex; align-items: center; gap: 0.5rem; margin: 1.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px dashed #E8E8E8; }
.form-section-label:first-child { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:500px){ .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
label { display: block; font-size: 0.82rem; font-weight: 800; color: var(--ink); margin-bottom: 0.35rem; text-transform: uppercase; letter-spacing: 0.04em; }
input, select, textarea { width: 100%; padding: 0.7rem 1rem; border: 2px solid #E8E8E8; border-radius: 12px; font-size: 0.95rem; font-family: 'Nunito', sans-serif; font-weight: 600; color: var(--ink); background: #fff; outline: none; transition: border-color 0.15s, box-shadow 0.15s; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(122,184,245,0.25); }
textarea { resize: vertical; min-height: 120px; }

/* ══ FOOTER ═══════════════════════════════════════════════════ */
footer { background: var(--ink); color: rgba(255,255,255,0.5); padding: 2.5rem clamp(1.5rem,5vw,4rem); font-size: 0.82rem; font-weight: 600; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col-title { font-family: 'Fredoka One', cursive; font-size: 1rem; color: var(--yellow); margin-bottom: 0.75rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 0.35rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.footer-logo img { height: 36px; width: auto; opacity: 0.8; }

/* ══ ALERT ════════════════════════════════════════════════════ */
.alert { display: none; padding: 0.75rem 1rem; border-radius: 12px; margin-bottom: 1rem; font-size: 0.88rem; font-weight: 700; }
.alert.show { display: block; }
.alert.error { background: #FFEDEB; color: #C0392B; border: 2px solid #F5C6C2; }
.alert.success { background: #E8F8E8; color: var(--green-dark); border: 2px solid #B8E0B8; }

/* ══ MODAL ════════════════════════════════════════════════════ */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: #fff; border-radius: var(--r-xl); padding: 2.5rem; max-width: 400px; width: 100%; text-align: center; transform: scale(0.9); transition: transform 0.25s; box-shadow: 0 8px 0 rgba(0,0,0,0.1); }
.modal-overlay.open .modal { transform: scale(1); }
.modal-icon { font-size: 4rem; margin-bottom: 1rem; }
.modal h2 { font-family: 'Fredoka One', cursive; font-size: 2rem; margin-bottom: 0.75rem; color: var(--green-dark); }
.modal p { font-size: 0.95rem; font-weight: 600; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; }
.modal-btn { padding: 0.875rem 2rem; background: var(--green); color: #fff; border: none; border-radius: var(--r-pill); font-family: 'Nunito',sans-serif; font-weight: 800; font-size: 1rem; cursor: pointer; box-shadow: 0 4px 0 var(--green-dark); }
