/* ------------------- CSS RESET & BASE TYPOGRAPHY ------------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #262626;
  background: #FFF9E6;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #22577A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus-visible {
  color: #22999a;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
  margin: 1em 0;
  padding-left: 1.2em;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', 'Roboto', cursive, Arial, sans-serif;
  color: #22577A;
  margin-bottom: 0.6em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.8em;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.7em;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 0.5em;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 0.4em;
}

strong, b {
  font-weight: 700;
  color: #22577A;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
}

.subheadline {
  color: #555;
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 1.4em 0 2em 0;
}

/* ------------------- BUTTONS & CTA ------------------------- */
.cta, .primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #80C49C;
  color: #22577A;
  font-family: 'Baloo 2', 'Roboto', cursive, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 12px 36px;
  margin-top: 12px;
  box-shadow: 0 2px 10px 0 rgba(34, 87, 122, 0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.2s;
  outline: none;
}
.cta:hover, .cta:focus,
.primary-btn:hover, .primary-btn:focus {
  background: #22577A;
  color: #FFF9E6;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 16px 0 rgba(34, 87, 122, 0.13);
}

/* ------------------- HEADER: NAVIGATION ------------------------- */
header {
  background: #ffffff;
  border-bottom: 2px solid #ffeece;
  box-shadow: 0 2px 8px rgba(34, 87, 122, 0.04);
  padding: 0;
  position: relative;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
header img {
  height: 48px;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Baloo 2', 'Roboto', cursive, Arial, sans-serif;
  font-size: 1.10rem;
  color: #22577A;
  padding: 8px 14px;
  border-radius: 16px;
  transition: background 0.15s, color 0.15s;
  font-weight: 600;
}
.main-nav a:hover, .main-nav a:focus {
  background: #80C49C;
  color: #22577A;
}

/* ----------- MOBILE BURGER MENU -------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 120;
  font-size: 2rem;
  background: #FFF9E6;
  color: #22577A;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 12px rgba(34,87,122,0.07);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.18s, background 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #22577A;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  width: 92vw;
  max-width: 380px;
  height: 100vh;
  background: #FFF9E6;
  box-shadow: 0 4px 24px rgba(34,87,122,0.15);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  padding: 32px 24px;
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(.66,.1,.38,.91);
  will-change: transform;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #80C49C;
  color: #22577A;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus{
  background: #22577A;
  color: #FFF9E6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.25rem;
  padding: 14px 12px;
  color: #22577A;
  font-family: 'Baloo 2', Arial, cursive, sans-serif;
  border-radius: 12px;
  transition: background 0.14s, color 0.14s;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #80C49C;
  color: #22577A;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 11px;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 6px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    gap: 4px;
    font-size: 1rem;
  }
  header img {
    height: 40px;
  }
}
@media (max-width: 768px) {
  header .container {
    padding: 12px 10px 12px 10px;
  }
  .main-nav {
    display: none;
  }
  .cta.primary-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 440px) {
  .mobile-menu {
    width: 100vw;
    max-width: none;
    padding: 24px 8px;
  }
}

/* ------------------- HERO SECTION ------------------------- */
.hero {
  background: linear-gradient(120deg, #FFF9E6 70%, #E2F3E2 100%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 4px 30px rgba(128,196,156,0.08);
  padding: 56px 0 48px 0;
  margin-bottom: 44px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.hero h1 {
  color: #22577A;
}

/* ------------------ FLEX LAYOUTS & SPACING ---------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(34, 87, 122, 0.06);
}
.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;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFF9E6;
  border-radius: 24px;
  box-shadow: 0 1px 10px 0 rgba(128,196,156,0.14);
  margin-bottom: 20px;
  margin-top: 18px;
  max-width: 600px;
}
.testimonial-card p {
  color: #262626;
  font-size: 1.15rem;
  font-style: italic;
}
.testimonial-card span {
  color: #22577A;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------------ FEATURE GRIDS ------------------ */
.features .feature-grid,
.feature-list,
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
  justify-content: flex-start;
}
.feature {
  background: #FFF9E6;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(128,196,156,0.12);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 350px;
  transition: box-shadow 0.2s, transform 0.17s;
  margin-bottom: 20px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 28px rgba(128,196,156,0.20);
  transform: translateY(-4px) scale(1.014);
}
.feature img {
  width: 46px;
  height: 46px;
  margin-bottom: 12px;
}
.feature h3, .feature h2 {
  margin: 0 0 9px 0;
  color: #22577A;
  font-size: 1.25rem;
  font-family: 'Baloo 2', 'Roboto', cursive;
}
.feature p {
  font-size: 1rem;
  color: #444;
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
}

.activity-category {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(34,87,122,0.04);
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.22s, transform 0.15s;
  margin-bottom: 20px;
}
.activity-category img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.activity-category h2 {
  font-size: 1.15rem;
  color: #22577A;
  margin-bottom: 7px;
}
.activity-category p {
  font-size: 0.99rem;
  color: #333;
}
.activity-category:hover,
.activity-category:focus-within {
  box-shadow: 0 8px 18px rgba(34,87,122,0.14);
  transform: translateY(-2px) scale(1.017);
}

/* ------------------ CTA ROW (bottom of sections) ----------- */
.cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-start;
}

/* ------------- CARD & MODAL DESIGN ---------------------- */
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(34,87,122, 0.09);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* ------------- TEXT SECTIONS & LISTS -------------------------- */
.text-section p {
  margin-bottom: 1.2em;
}
.text-section ul {
  margin-bottom: 1.2em;
  padding-left: 1.1em;
}

/* ------------- VALUES/BULLET SECTIONS -------------------------- */
.values ul {
  padding-left: 0;
}
.values li {
  background: #eaf9f3;
  margin-bottom: 14px;
  border-radius: 14px;
  padding: 13px 16px;
  font-size: 1.07rem;
  color: #22577A;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 0.5px 4px #dbeddf3b;
}
.values li strong {
  color: #22577A;
}

/* ------------- INDIVIDUAL SECTION TWEAKS -------------------- */
.activities-overview .season-filter ul,
.top-free-offers .event-highlights ul,
.top-free-offers .howto-tips ul,
.weather-indoor-info .indoor-activities ul,
.weather-indoor-info .bad-weather-tips ul,
.family-tips .parenting-hacks ul,
.family-tips .local-insider ul {
  margin-bottom: 0.8em;
}
.family-tips .community-voice {
  margin-top: 26px;
}

.contact-details {
  margin: 18px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
  color: #22577A;
}
.contact-details img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 7px;
  border-radius: 7px;
}
.map-section {
  margin: 24px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-icons {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 18px;
}
.trust-icons img {
  height: 24px;
  width: 24px;
  margin-right: 7px;
}

/* ------------- FOOTER -------------------- */
footer {
  background: #22577A;
  color: #FFF9E6;
  padding: 36px 0 22px 0;
  border-radius: 36px 36px 0 0;
  margin-top: 64px;
  font-size: 1.03rem;
  box-shadow: 0 -4px 21px rgba(34,87,122, 0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer img {
  height: 38px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #FFF9E6;
  font-family: 'Baloo 2', 'Roboto', cursive;
  font-size: 1rem;
  padding: 7px 13px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #80C49C;
  color: #22577A;
}
footer .contact-details {
  color: #FFF9E6;
  font-size: 0.98rem;
  gap: 7px;
  margin-bottom: 6px;
}
footer p {
  font-size: 0.96rem;
  color: #FFF9E6;
  margin: 0 0 4px 0;
  text-align: center;
}

/* ------------------- COOKIE CONSENT BANNER ------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFF9E6;
  border-top: 2px solid #80C49C;
  box-shadow: 0 -2px 18px rgba(34,87,122,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 16px;
  z-index: 9999;
  max-width: 100vw;
  animation:cookieBannerSlideUp 0.42s cubic-bezier(.66,.15,.37,.8);
  font-size: 1.05rem;
}
@keyframes cookieBannerSlideUp {
  0% { transform: translateY(105%); opacity:0 }
  100% { transform: none; opacity:1 }
}
.cookie-banner .cookie-text {
  color: #22577A;
  flex: 1 1 350px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 18px;
  border: none;
  font-family: 'Baloo 2', Arial, cursive;
  font-size: 1rem;
  font-weight: 600;
  background: #80C49C;
  color: #22577A;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(128,196,156,0.12);
  transition: background 0.15s, color 0.15s, box-shadow 0.22s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #22577A;
  color: #FFF9E6;
}
.cookie-banner .cookie-settings-btn {
  background: #FFD281;
  color: #22577A;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #ebbe57;
  color: #22577A;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,87,122,0.33);
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s cubic-bezier(.45,.07,.52,.75);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal-content {
  background: #FFF9E6;
  border-radius: 26px;
  box-shadow: 0 4px 32px rgba(34,87,122,0.13);
  padding: 38px 28px 28px 28px;
  max-width: 450px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  animation:cookieModalPop 0.39s cubic-bezier(.38,.63,.54,1.22);
}
@keyframes cookieModalPop {
  0% { transform: scale(0.8); opacity:0 }
  100% { transform: scale(1); opacity:1 }
}
.cookie-modal h2 {
  margin-bottom: 7px;
  font-size: 1.34rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  color: #22577A;
}
.cookie-modal .category-toggle {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #80C49C;
  margin-right: 2px;
  border-radius: 5px;
  border: 1.5px solid #22577A;
  outline: none;
  cursor: pointer;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 10px 26px;
  border-radius: 18px;
  font-family: 'Baloo 2', Arial, cursive;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background: #80C49C;
  color: #22577A;
  transition: background 0.14s, color 0.14s;
  cursor: pointer;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #22577A;
  color: #FFF9E6;
}
.cookie-modal .cookie-modal-close-btn {
  background: #FFD281;
  color: #22577A;
  margin-right: auto;
  font-size: 1.08rem;
}
.cookie-modal .cookie-modal-close-btn:hover, .cookie-modal .cookie-modal-close-btn:focus {
  background: #ebbe57;
  color: #22577A;
}
.cookie-modal .category-desc {
  font-size: 0.98rem;
  color: #4d4d4d;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: left;
    padding: 18px 8px;
    gap: 13px;
  }
  .cookie-banner .cookie-btn-group {
    justify-content: flex-start;
    gap: 10px;
  }
}

/* ------------------- RESPONSIVE DESIGN ---------------------- */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .feature, .activity-category {
    max-width: 100%;
    flex: 1 1 98vw;
  }
}
@media (max-width: 830px) {
  .features .feature-grid, .feature-list, .category-grid {
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 28px 0;
    border-radius: 0 0 22px 22px;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 32px;
    border-radius: 18px;
  }
  .features .feature-grid, .feature-list, .category-grid {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .trust-icons {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.36rem;
  }
}
@media (max-width: 500px) {
  body {
    font-size: 0.98rem;
  }
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .footer-nav {
    gap: 12px;
  }
  .testimonial-card,
  .feature,
  .activity-category {
    padding: 15px 7px;
    border-radius: 13px;
  }
  footer {
    border-radius: 18px 18px 0 0;
    padding: 22px 0 12px 0;
  }
}

/* -------------- MICRO-INTERACTIONS & TRANSITIONS ------------------- */
.card, .feature, .activity-category, .testimonial-card, .section,
.cta, .primary-btn, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.18s, background 0.17s, color 0.17s, transform 0.17s;
}

/* -------------- SCROLLBAR -------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #eaf9f3;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: #80C49C;
  border-radius: 6px;
}

/* -------------- ACCESSIBILITY -------------- */
:focus {
  outline: 2px solid #80C49C;
  outline-offset: 2px;
}

/* --- HIDE visually hidden elements (flash classes eg, .hide) --- */
.hide, .hidden {
  display: none !important;
}

/* --- Thank you page icon alignment and cta --- */
.thank-you .cta-row {
  margin-top: 44px;
}

