/* ===================
   CSS RESET & NORMALIZE
   =================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-size: 16px;
  background: #FAF8F3;
  color: #241810;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: #246688;
  text-decoration: none;
  transition: color 0.20s;
}
a:hover, a:focus {
  color: #B75815;
  outline: none;
}
img {
  border-style: none;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===============
   BRAND VINTAGE RETRO COLORS
   =============== */
:root {
  --primary: #246688;
  --secondary: #F3B63E;
  --vintage-blue: #9BC4CB;
  --vintage-red: #B75815;
  --vintage-green: #A6BE5F;
  --vintage-cream: #FAF8F3;
  --vintage-brown: #815D3A;
  --vintage-bg: #F7EFD8;
  --accent: #FFFFFF;
  --text-dark: #241810;
  --text-light: #FFFFFF;
  --shadow: 0 2px 12px 0 rgba(56,44,15,0.10);
  --border-radius: 16px;
}

/* ===========
   TYPOGRAPHY (VINTAGE RETRO)
   =========== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 16px;  }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px;}
h5, h6 { font-size: 1rem; font-weight: 700; margin-bottom: 10px;}

p, ul, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem; color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}
blockquote {
  border-left: 6px solid var(--secondary);
  padding: 8px 20px;
  font-style: italic;
  background: #FFFDEA;
  margin: 20px 0;
  border-radius: 12px;
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--vintage-red);
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
strong, b {
  font-weight: 700;
}
ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 26px;
}
ul li::before {
  content: "\25CF";
  color: var(--secondary);
  font-size: 1.2em;
  position: absolute;
  left: 0; top: 0;
  line-height: 1.3;
}
/* ===== LEGAL ===== */
.legal-text {
  color: var(--vintage-brown);
  background: #FFF7DB;
  border-radius: var(--border-radius);
  padding: 24px 18px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

/* ===========
   LAYOUT CONTAINERS
   =========== */
.container {
  max-width: 1032px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

/* Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--vintage-cream);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  position: relative;
  flex: 1 1 calc(45% - 24px);
  min-width: 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* Content grid for features etc. */
.content-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 calc(47% - 20px);
  min-width: 220px;
  background: #FFFFFF;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 24px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 3px solid var(--vintage-red);
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-grid > div:hover {
  transform: translateY(-5px) scale(1.02) rotate(-1deg);
  box-shadow: 0 8px 32px 0 rgba(56,44,15,0.16);
  border-color: var(--primary);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ===========
   BUTTONS
   =========== */
.btn-primary {
  display: inline-block;
  padding: 13px 42px;
  background: var(--primary);
  color: var(--accent);
  border: none;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px 0 rgba(36,102,136,0.10);
  cursor: pointer;
  transition: background 0.28s, transform 0.13s;
  margin-top: 8px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  display: inline-block;
  padding: 11px 28px;
  background: var(--secondary);
  color: var(--text-dark);
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 8px;
  box-shadow: 0 1px 7px 0 rgba(243,182,62,0.17);
  transition: background 0.15s, box-shadow 0.15s, color 0.15s;
  cursor: pointer;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--vintage-green);
  color: var(--primary);
}

/* ====== TAGS/AGE TAG ====== */
.age-tag {
  display: inline-block;
  background: var(--vintage-red);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  border-radius: 24px;
  padding: 2px 18px;
  margin-bottom: 7px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* ===========
   ACCORDIONS/FAQ
   =========== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-accordion > div {
  background: #FFFDEA;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 5px 0 rgba(190,140,23,0.08);
  padding: 16px 22px;
  border-left: 5px solid var(--secondary);
  transition: box-shadow 0.18s, border-color 0.18s;
}
.faq-accordion > div:hover {
  border-left-color: var(--primary);
  box-shadow: 0 4px 19px -2px rgba(190,140,23,0.15);
}
.faq-accordion h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
}
.faq-accordion div > div {
  color: var(--vintage-brown);
  font-size: 1rem;
  margin-bottom: 0;
}

/* ===========
   TESTIMONIALS
   =========== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  background: #FFFDEA;
  border-radius: var(--border-radius);
  padding: 22px 30px;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
  color: #40321C;
  position: relative;
  border: 2.5px dashed var(--vintage-red);
  font-family: 'Montserrat', Arial, sans-serif;
  max-width: 600px;
}
.testimonial-card p {
  color: #241810;
  font-size: 1.10rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card footer {
  align-self: flex-end;
  color: var(--primary);
  background: transparent !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
}

/* ===========
   FEATURES SECTION ITEMS
   =========== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFFDEA;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px 16px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
}

/* ===========
   ACTIVITY/CONTENT LISTS
   =========== */
.activity-list, .outdoor-activity-list, .indoor-activity-list, .free-activity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.activity-item, .outdoor-activity-list > div, .indoor-activity-list > div, .free-activity-list > div {
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px 0 rgba(146,83,24,0.10);
  padding: 22px 20px;
  flex: 1 1 calc(47% - 24px);
  min-width: 220px;
  border: 2.5px solid var(--vintage-green);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.activity-item:hover, .outdoor-activity-list > div:hover, .indoor-activity-list > div:hover, .free-activity-list > div:hover {
  transform: scale(1.025) rotate(-0.8deg);
  box-shadow: 0 10px 25px -2px rgba(90,29,19,0.09);
  border-color: var(--vintage-red);
}
.activity-categories {
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
}
.activity-categories strong {
  color: var(--vintage-red);
}
.activity-categories span {
  background: #FFF7DB;
  border-radius: 13px;
  padding: 1.5px 11px;
  margin-right: 8px;
  margin-bottom: 2px;
  font-size: 0.97em;
  color: var(--vintage-brown);
  font-family: 'Roboto', Arial, sans-serif;
  display: inline-block;
}
.activity-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.activity-filters button {
  background: var(--vintage-blue);
  color: var(--text-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  border: none;
  padding: 8px 15px;
  font-size: 0.97em;
  margin-right: 4px;
  margin-bottom: 2px;
  box-shadow: 0 2px 5px 0 rgba(155,196,203, 0.10);
  transition: background 0.14s, color 0.15s;
  cursor: pointer;
}
.activity-filters button:hover,
.activity-filters button:focus {
  background: var(--primary);
  color: #fff;
}

.tips-for-exploring-nature, .tips-for-bad-weather {
  background: #FDF5E3;
  border-radius: 12px;
  padding: 18px 16px;
  margin-bottom: 14px;
  font-size: 1rem;
  box-shadow: 0 1px 8px 0 rgba(187,156,53,0.09);
  border: 2px solid #FFF3B6;
}
.tips-for-exploring-nature h4, .tips-for-bad-weather h4 {
  margin-bottom: 8px;
  color: var(--vintage-brown);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
}

.weather-widget {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--vintage-blue);
  color: var(--text-dark);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
}

.weather-based-suggestions, .seasonal-tips-list {
  margin-bottom: 18px;
}
.seasonal-tips-list ul li img {
  vertical-align: middle;
  margin-right: 7px;
  width: 24px;
  height: 24px;
}

/* ===========
   FOOTER
   =========== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 50px 0 0 0;
  margin-top: 40px;
}
footer .container {
  padding-top: 10px;
  padding-bottom: 2px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-brand img {
  width: 64px;
  height: auto;
  border-radius: 11px;
  box-shadow: 0 1px 9px 0 rgba(255,255,255,0.1);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1em;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline wavy 2px;
  text-underline-offset: 3px;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 28px;
  color: var(--accent);
  font-size: 1em;
  margin-bottom: 8px;
  margin-top: 8px;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 0 0;
}
.footer-social a img {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  padding: 3px;
  box-shadow: 0 2px 12px 0 rgba(255,255,255,0.15);
  transition: box-shadow 0.17s, background 0.13s;
}
.footer-social a:hover img {
  background: var(--secondary);
  box-shadow: 0 6px 18px 0 rgba(243,182,62,0.19);
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: var(--vintage-bg);
  padding: 0;
  box-shadow: 0 1.5px 8px 0 rgba(36,102,136,0.08);
  border-bottom: 3px solid #EDE6D7;
  position: relative;
  z-index: 102;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 0 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.logo img {
  max-width: 110px;
  height: auto;
  border-radius: 9px;
  margin-right: 24px;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  color: var(--primary);
  font-size: 1.09em;
  padding: 0 8.5px;
  border-radius: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: background 0.17s, color 0.18s;
}
nav ul li a:hover, nav ul li a:focus,
nav ul li.active a {
  background: var(--secondary);
  color: var(--primary);
  text-decoration: none;
}

/* ================
   MOBILE MENU
   ================ */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  padding: 7px 14px 7px 14px;
  border-radius: 50%;
  position: absolute;
  right: 22px; top: 17px;
  cursor: pointer;
  z-index: 101;
  box-shadow: 0 3px 16px -4px rgba(243,182,62,0.13);
  transition: background 0.19s, color 0.17s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--vintage-bg);
  box-shadow: 0 14px 66px 0 rgba(36,102,136,0.15);
  z-index: 200;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.81,0,.47,1), box-shadow 0.2s;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0vw);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 12px 18px 0 0;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  transition: background 0.18s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--vintage-brown);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin: 34px 0 0 30px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  padding: 9px 0;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vintage-blue);
  color: var(--vintage-brown);
  text-decoration: underline dotted 2px;
  text-underline-offset: 2.5px;
}

@media (max-width: 1050px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  nav ul {
    gap: 12px;
  }
  .feature-grid > div,
  .activity-item,
  .outdoor-activity-list > div,
  .indoor-activity-list > div,
  .free-activity-list > div {
    min-width: 170px;
    font-size: 1em;
  }
}

@media (max-width: 900px) {
  .feature-grid > div,
  .activity-item,
  .outdoor-activity-list > div,
  .indoor-activity-list > div,
  .free-activity-list > div {
    flex: 1 1 100%;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 3vw;
  }
  .content-wrapper, .footer-contact {
    gap: 16px;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .footer-contact {
    gap: 8px 6px;
    font-size: 0.98em;
  }
  .feature-grid, .activity-list, .outdoor-activity-list, .indoor-activity-list, .free-activity-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid > div,
  .activity-item,
  .outdoor-activity-list > div,
  .indoor-activity-list > div,
  .free-activity-list > div {
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  .testimonial-card {
    padding: 13px 8px;
    margin-bottom: 18px;
  }
  .section {
    padding: 22px 6vw;
    margin-bottom: 33px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 13px 21px;
    font-size: 1rem;
  }
}

@media (max-width:500px) {
  h1 {font-size: 1.53rem;}
  h2 {font-size: 1.18rem;}
  .section {padding: 15px 2vw;}
}

/* ================
   COOKIE CONSENT BANNER & MODAL
   ================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 400;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: var(--vintage-brown);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 26px 12px 18px;
  box-shadow: 0 -5px 32px 0 rgba(36,102,136,0.16);
  gap: 22px;
  opacity: 1;
  transform: translateY(0%);
  transition: transform 0.36s cubic-bezier(.88,.02,.31,1), opacity 0.26s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  padding: 8px 22px;
  margin-right: 5px;
  margin-bottom: 3px;
  transition: background 0.18s, color 0.14s, box-shadow 0.18s;
  box-shadow: 0 1px 6px 0 rgba(243,182,62,0.10);
}
.cookie-banner .btn-accept {
  background: var(--vintage-green);
  color: var(--vintage-brown);
}
.cookie-banner .btn-accept:hover,
.cookie-banner .btn-accept:focus {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 4px 13px 0 rgba(243,182,62,0.18);
}
.cookie-banner .btn-reject {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-banner .btn-reject:hover,
.cookie-banner .btn-reject:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .btn-settings {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .btn-settings:hover,
.cookie-banner .btn-settings:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,19,8,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 410;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.32s cubic-bezier(.91,.09,.54,1);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-content {
  background: #FFFDEA;
  color: #241810;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--border-radius);
  padding: 32px 30px 24px 30px;
  min-width: 300px;
  max-width: 92vw;
  box-shadow: 0 8px 44px 0 rgba(181,88,21,0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-in 0.42s cubic-bezier(.91,.09,.54,1);
}
@keyframes cookie-in { from { transform: scale(.94) translateY(40px); opacity:0;} to {transform: scale(1) translateY(0); opacity:1;} }
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  font-size: 2em;
  color: var(--primary);
  cursor: pointer;
  border-radius: 50%;
}
.cookie-modal .cookie-category {
  display: flex; align-items: flex-start; gap: 12px;
  margin: 8px 0 8px 0;
  font-size: 1em;
}
.cookie-modal .cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.03em;
  font-weight: 500;
  color: var(--vintage-brown);
  margin-left: 8px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 19px; height: 19px;
  cursor: pointer;
}
.cookie-modal .btn-modal-save {
  margin-top: 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 27px;
  border-radius: 23px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03em;
  font-weight: 700;
  box-shadow: 0 2px 8px 0 rgba(36,102,136,0.08);
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
}
.cookie-modal .btn-modal-save:hover, .cookie-modal .btn-modal-save:focus {
  background: var(--secondary);
  color: var(--primary);
}

/* ================
   MISC ELEMENTS
   ================ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 8px;
}

/* For accessibility and focus */
a:focus-visible, button:focus-visible { outline: 2px solid var(--vintage-blue); outline-offset: 2px; }

/* ================
   MICRO-INTERACTIONS & SUBTLE EFFECTS
   ================ */
.btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal .btn-modal-save {
  transition: background 0.19s, color 0.17s, transform 0.13s, box-shadow 0.14s;
}
.card, .feature-grid > div, .testimonial-card, .faq-accordion > div, .activity-item, .outdoor-activity-list > div, .indoor-activity-list > div {
  transition: box-shadow 0.16s, border-color 0.17s, transform 0.15s;
}

/* ================
   ENSURE SPACING BETWEEN CARDS & SECTIONS
   ================ */
.section:not(:last-child) {margin-bottom: 60px;}
.content-wrapper > *:not(:last-child) {margin-bottom: 17px;}

.card-container > * {margin-bottom: 20px;}
.card:not(:last-child) {margin-right: 20px;}

.content-grid > * {margin-bottom: 20px;}

/* Prevent overlapping on all layouts */
*[class*="list"] > * {margin-bottom: 20px;}

/* Hide cookie modal by default */
.cookie-modal.hide, .cookie-banner.hide {display: none !important;}

/* End of CSS */
