/* ===== CSS RESET & NORMALIZE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #203354;
  background: #F2F2EB;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: #203354;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #55AAC6;
  outline-offset: 2px;
}

/* ===== BRAND COLOR VARIABLES ===== */
:root {
  --va-primary: #203354;
  --va-secondary: #55AAC6;
  --va-accent: #F2F2EB;
  --va-yellow: #FFC700;
  --va-orange: #FF8A33;
  --va-pink: #E23B84;
  --va-purple: #704AF9;
  --va-green: #46C27D;
  --va-shadow: 0 4px 24px 0 rgba(32,51,84,0.09);
  --va-radius: 18px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, .logo {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #203354;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1.18;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #E23B84;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
  color: #55AAC6;
}
.subheadline {
  font-size: 1.18rem;
  color: #704AF9;
  font-weight: 600;
  margin-bottom: 12px;
}
p, li, address {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #203354;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}
.strong, strong {
  font-weight: 700;
  color: #203354;
}


/* ===== LAYOUT & SPACING ===== */
body {
  background-color: var(--va-accent);
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section,
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ===== HEADER ===== */
header {
  background: white;
  box-shadow: var(--va-shadow);
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
}
header .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.logo img {
  height: 44px;
  width: auto;
  transition: transform 0.22s cubic-bezier(.35,1.7,.66,.84);
}
.logo:hover img {
  transform: rotate(-8deg) scale(1.07);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #203354;
  padding: 7px 16px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--va-yellow);
  color: #E23B84;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #FF8A33 0%, #FFC700 100%);
  color: #203354;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: .01em;
  border: none;
  border-radius: 999px;
  padding: 12px 34px;
  margin-left: 16px;
  box-shadow: 0 4px 14px 0 #FFCB4013;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.15s, box-shadow 0.18s;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #E23B84 0%, #704AF9 100%);
  color: #fff;
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 8px 32px 0 #E23B8412;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  line-height: 1;
  height: 44px;
  width: 44px;
  color: #E23B84;
  background: none;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 30;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFECF6;
}
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(32,51,84,0.85);
  z-index: 40;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.87,-0.41,.19,1.44);
  will-change: transform;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}

.mobile-menu-close {
  background: white;
  color: #E23B84;
  font-size: 2.4rem;
  border: none;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  margin: 32px 36px 10px 0;
  box-shadow: 0 2px 16px 0 #E23B8433;
  cursor: pointer;
  transition: background 0.14s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFECF6;
  color: #704AF9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  padding: 10px 36px 0 0;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .03em;
  background: none;
  padding: 12px 30px 12px 0;
  border-radius: 0 30px 30px 0;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FF8A33;
  color: #203354;
}
@media (max-width: 1024px) {
  .main-nav, .cta-btn {
    display: none;
  }
}

/* ===== HERO & SECTION STYLES ===== */
.hero {
  background: linear-gradient(90deg,#FFECF6 0%,#E1EAFF 100%);
  border-bottom: 4px solid #FFC700;
  padding: 60px 0 40px;
  display: flex;
  align-items: center;
  min-height: 360px;
  box-shadow: var(--va-shadow);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
@media (max-width: 768px) {
  .hero {
    min-height: unset;
    padding: 36px 0 16px 0;
  }
  .hero .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.section {
  background: white;
  border-radius: var(--va-radius);
  box-shadow: var(--va-shadow);
}
@media (max-width: 768px) {
  .section, main section {
    padding: 22px 8px;
    margin-bottom: 36px;
  }
}

/* ===== CONTENT PATTERNS & FLEXBOX ONLY ===== */
.feature-grid, .event-types-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature-grid > div, .event-types-grid > div, .card, .testimonial-card {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 370px;
  margin-bottom: 20px;
  padding: 20px 18px 22px 18px;
  background: #fff;
  border-radius: var(--va-radius);
  box-shadow: var(--va-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  z-index: 1;
}
.feature-grid > div:hover, .event-types-grid > div:hover, .card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px 0 #FF8A3345;
  transform: translateY(-6px) scale(1.03) rotate(-1.5deg);
}
.feature-grid img, .event-types-grid img, .card img {
  height: 44px;
  width: 44px;
  margin-bottom: 10px;
  filter: drop-shadow(0 1px 8px #FFCB4010);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ===== TESTIMONIALS ===== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #FFF6FA;
  border-radius: var(--va-radius);
  box-shadow: 0 2px 10px 0 #E23B8420;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px 20px 22px;
  margin-bottom: 20px;
  color: #203354;
  font-size: 1rem;
  max-width: 370px;
  min-width: 220px;
}
.testimonial-card p {
  font-size: 1rem;
  color: #203354;
}
.testimonial-meta {
  color: #704AF9;
  font-weight: 700;
  font-size: 0.98rem;
}

@media (max-width: 980px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===== UL & VALUES ===== */
.core-values, .usp-list, .feature-bullets, .program-benefits, .event-benefits {
  padding-left: 0;
  margin-bottom: 24px;
}
.core-values li, .usp-list li, .feature-bullets li, .program-benefits li, .event-benefits li {
  background: #55AAC6;
  color: #fff;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 20px 9px 22px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  margin-right: 6px;
  transition: background 0.18s;
  box-shadow: 0 2px 8px 0 #55AAC630;
}
.core-values li:nth-child(2n) { background: #FFC700; color: #203354; }
.core-values li:nth-child(3n) { background: #E23B84; color: #fff; }
.usp-list li:nth-child(2n) { background: #704AF9; color: #fff; }
.feature-bullets li:nth-child(2n) { background: #FF8A33; color: #fff; }
.program-benefits li:nth-child(3n) { background: #FFC700; color: #203354; }
.event-benefits li:nth-child(3n) { background: #704AF9; color: #fff; }

/* ===== SPECIALS ===== */
.mission-statement {
  background: #55AAC61A;
  border-left: 6px solid #E23B84;
  padding: 14px 20px;
  border-radius: var(--va-radius);
  color: #203354;
  margin-bottom: 16px;
  font-size: 1.12rem;
}
.brand-story-short {
  font-style: italic;
  color: #704AF9;
  font-size: 1.06rem;
}
.awards-memberships {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

/* ===== CARDS & FEATURES ===== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.services-list, .youth-programs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services-list li, .youth-programs-list li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--va-radius);
  box-shadow: var(--va-shadow);
  padding: 16px 24px;
  gap: 20px;
  font-size: 1.08rem;
  margin-bottom: 10px;
  position: relative;
}
.services-list img, .youth-programs-list img {
  height: 38px;
  width: 38px;
  margin-right: 12px;
}
.service-price {
  display: inline-block;
  background: #FF8A33;
  color: #fff;
  border-radius: 16px;
  padding: 3px 16px;
  font-size: 0.96rem;
  font-weight: 600;
  margin-left: 14px;
  margin-top: 4px;
}

/* ===== ADDRESS, META ===== */
address {
  font-style: normal;
  font-size: 1rem;
  color: #203354;
  margin-bottom: 8px;
}
.footer-meta {
  color: #704AF9;
  font-size: 0.92rem;
  margin-top: 6px;
  font-style: italic;
}

/* ===== FOOTER ===== */
footer {
  background: #203354;
  color: #fff;
  padding: 36px 0 20px 0;
  box-shadow: 0 -4px 24px 0 #20335413;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #FFC700;
  font-weight: 700;
  padding: 5px 14px;
  font-size: 0.98rem;
  border-radius: 999px;
  transition: background 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff;
  color: #E23B84;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-nav {
    gap: 12px;
  }
}

/* ===== INPUTS, FORMS ===== */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
}
input[type="text"],input[type="email"],textarea {
  border: 2px solid #55AAC6;
  background: #FAFBFC;
  border-radius: 14px;
  padding: 12px 14px;
  color: #203354;
  width: 100%;
  margin-bottom: 14px;
  transition: border 0.14s;
}
input[type="text"]:focus,input[type="email"]:focus,textarea:focus {
  border-color: #E23B84;
}
button, .btn {
  cursor: pointer;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1080px) {
  .container {
    max-width: 94vw;
  }
  .feature-grid, .event-types-grid, .card-container, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.13rem; }
  .testimonial-card, .feature-grid > div, .event-types-grid > div {
    max-width: 100%;
    min-width: 0;
  }
  .feature-grid, .event-types-grid, .card-container, .testimonial-list, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .services-list, .youth-programs-list {
    gap: 10px;
  }
  .services-list li, .youth-programs-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 13px;
  }
}
@media (max-width: 400px) {
  .section, main section {
    padding: 9px 2px;
    margin-bottom: 20px;
  }
  .container { padding-left: 2px; padding-right: 2px; }
}

/* ===== MICRO-ANIMATIONS ===== */
.card, .testimonial-card, .feature-grid > div, .event-types-grid > div {
  transition: box-shadow 0.17s, transform 0.17s, background 0.2s;
}
.card:hover, .feature-grid > div:hover, .event-types-grid > div:hover {
  box-shadow: 0 8px 32px 0 #FFCB4012, 0 1.5px 8px #20335415;
  background: #FFECF6;
  transform: translateY(-3px) scale(1.03);
}
.cta-btn, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.2s, color 0.2s, transform 0.13s;
}
.cta-btn:active, .main-nav a:active, .footer-nav a:active, .mobile-nav a:active {
  transform: scale(0.97);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #203354;
  color: #fff;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 24px 14px 16px 14px;
  box-shadow: 0 -6px 32px 0 #20335440;
  animation: fadeInUp 0.7s cubic-bezier(.22,1.54,.41,1.09);
}
@keyframes fadeInUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  width: 100%;
  justify-content: center;
}
.cookie-btn, .cookie-settings-btn {
  background: #FFC700;
  color: #203354;
  font-weight: 800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 24px;
  border-radius: 999px;
  border: none;
  font-size: 1.03rem;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.15s;
  box-shadow: 0 2px 10px 0 #FFC70032;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #E23B84;
  color: #fff;
  box-shadow: 0 4px 18px 0 #E23B8433;
}
.cookie-btn.reject {
  background: #704AF9;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FF8A33;
  color: #fff;
}

/* ===== COOKIE MODAL POPUP ===== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,51,84,0.87);
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  animation: fadeIn 0.22s ease-in;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #203354;
  border-radius: 22px;
  padding: 36px 30px 30px 30px;
  max-width: 95vw;
  width: 400px;
  box-shadow: 0 8px 28px 0 #704AF925;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: slideDown .33s cubic-bezier(.17,1.2,.41,1.06);
}
@keyframes slideDown {
  from { transform: translateY(-30px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: #FFECF6;
  color: #E23B84;
  border: none;
  font-size: 1.6rem;
  border-radius: 50%;
  width: 34px; height: 34px;
  box-shadow: 0 1px 6px 0 #704AF920;
  cursor: pointer;
}
.cookie-modal h2 {
  margin-bottom: 10px;
  color: #203354;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.cookie-category label {
  font-size: 1.04rem;
  font-weight: 600;
  color: #203354;
}
.cookie-category input[type="checkbox"] {
  accent-color: #55AAC6;
  width: 22px;
  height: 22px;
}
.cookie-category .always-enabled {
  color: #55AAC6;
  font-weight: 700;
  font-size: 0.99rem;
  margin-left: 5px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 22px;
}
.cookie-modal .cookie-btn {
  padding: 10px 25px;
  font-size: 1.03rem;
}

/* ===== ANIMATED & PLAYFUL DECORATIONS ===== */
.card::before, .feature-grid > div::before, .testimonial-card::before {
  content: '';
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #FFC70033;
  left: -18px;
  top: -18px;
  z-index: 0;
  animation: playful-bounce 2.5s infinite cubic-bezier(.75,-0.09,.42,1.17);
}
.card:nth-child(2n)::before, .feature-grid > div:nth-child(2n)::before, .testimonial-card:nth-child(2n)::before {
  background: #E23B8425;
  animation-delay: 1.1s;
}
.card:nth-child(3n)::before, .feature-grid > div:nth-child(3n)::before, .testimonial-card:nth-child(3n)::before {
  background: #55AAC620;
  animation-delay: 1.6s;
}
@media (max-width: 768px) {
  .card::before, .feature-grid > div::before, .testimonial-card::before {
    width: 24px; height: 24px; left: -8px; top: -8px;
  }
}
@keyframes playful-bounce {
  0% { transform: scale(0.9) translateY(0); opacity: 0.7; }
  50% { transform: scale(1.1) translateY(-6px); opacity: 0.9; }
  100% { transform: scale(0.9) translateY(0); opacity: 0.7; }
}

/* ===== UTILITIES ===== */
.hide { display: none !important; }
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mt-24 { margin-top: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }

/* ===== AUTOFILL COLOR FIX (for Chrome) ===== */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px #FAFBFC inset !important;
  -webkit-box-shadow: 0 0 0 1000px #FAFBFC inset !important;
  -webkit-text-fill-color: #203354 !important;
}

/* ===== ACCESSIBILITY ===== */
::selection {
  background: #55AAC6;
  color: #fff;
}

/* ===== THANK YOU PAGE SPECIAL ===== */
.hero .subheadline {
  color: #46C27D;
  font-size: 1.16rem;
  font-weight: 700;
}

/* ===== ERROR & INFO MESSAGES (if used) ===== */
.form-error {
  background: #E23B8416;
  color: #E23B84;
  border: 1.5px solid #E23B84;
  border-radius: 10px;
  padding: 10px 18px;
  margin: 12px 0;
  font-size: 1.01rem;
}
.form-success {
  background: #46C27D19;
  color: #46C27D;
  border: 1.5px solid #46C27D;
  border-radius: 10px;
  padding: 10px 18px;
  margin: 12px 0;
  font-size: 1.01rem;
}

/* ===== END ===== */
