/* 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;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,*::before,*::after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  color: #222;
  background: #F4F8FB;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #275185;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #FFB800;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
}
button {
  background: none;
  cursor: pointer;
}

/* BRAND VARIABLES (no CSS vars for compatibility) */
:root {
  /* For reference, don't use directly for fallback compatibility */
}

/* TYPOGRAPHY: Montserrat (Bold/Display), Open Sans (Body) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Open+Sans:400,600&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #275185;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
  font-weight: 600;
}
h4, h5 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, li, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2d2d2d;
  margin-bottom: 10px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: #275185;
}

blockquote {
  font-style: italic;
  color: #222C39;
  font-weight: 600;
  border-left: 6px solid #FFB800;
  margin: 0 0 10px 0;
  padding: 0 0 0 16px;
}


/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(39,81,133,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (max-width: 900px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
  section, .section {
    padding: 32px 10px;
    border-radius: 14px;
  }
}

/* HEADER & NAV */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(39,81,133,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: 72px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px 16px 20px;
}
.logo {
  height: 48px;
  width: auto;
  margin-right: 20px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: #275185;
  padding: 8px 0;
  position: relative;
  transition: color .2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #FFB800;
}
.cta.primary {
  margin-left: 24px;
  background: #FFB800;
  color: #222;
  border-radius: 48px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 36px;
  box-shadow: 0 4px 16px rgba(255,184,0,0.10);
  border: none;
  transition: background .18s, color .18s, transform .14s;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #275185;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(39,81,133,0.12);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #FFB800;
  color: #222;
  font-size: 2rem;
  border-radius: 12px;
  padding: 6px 18px;
  border: none;
  margin-left: 18px;
  transition: background .18s, color .14s;
  z-index: 300;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #275185;
  color: #fff;
}

/* Hide mobile menu desktop, show on mobile */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-110vw);
  transition: transform .42s cubic-bezier(.8,.14,.2,1);
  z-index: 9999;
  box-shadow: 0 4px 64px rgba(39,81,133,0.10);
  padding: 0 0 32px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #275185;
  background: #FFB800;
  border-radius: 16px;
  margin: 24px 24px 0 0;
  padding: 4px 18px;
  transition: background .14s;
  z-index: 10001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #222;
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  gap: 12px;
  align-items: flex-start;
  padding-left: 48px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #275185;
  padding: 16px 0;
  border-bottom: 2px solid #F4F8FB;
  width: fit-content;
  transition: color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFB800;
}
@media (max-width: 1020px) {
  .main-nav, .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 520px) {
  .mobile-nav {
    padding-left: 20px;
  }
}

/* HERO SECTIONS */
.hero {
  background: #275185;
  color: #fff;
  padding: 56px 0 56px 0;
  border-radius: 32px;
  box-shadow: 0 8px 48px rgba(39,81,133,0.15);
  margin-bottom: 40px !important;
  display: flex;
  flex-direction: column;
}
.hero .container, .hero .content-wrapper {
  color: #fff;
}
.hero h1, .hero h2, .hero p {
  color: #fff !important;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: 1.22rem;
  color: #E9EAF0;
  margin-bottom: 24px;
}
.hero .cta.primary {
  background: #FFB800;
  color: #222;
}
.hero .cta.primary:hover, .hero .cta.primary:focus {
  background: #fff;
  color: #275185;
}

/* FEATURES, CARDS, GRIDS */
.features {
  background: #fffbef;
  border-radius: 24px;
  margin-bottom: 60px;
}
.features .content-wrapper {
  gap: 28px;
}
.feature-grid, .activity-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 18px;
}
.feature-grid li, .activity-grid li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(39,81,133,0.08);
  padding: 24px 18px 18px 18px;
  flex: 1 1 250px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-grid img, .activity-grid img {
  height: 40px;
  width: 40px;
  margin-bottom: 8px;
}
.activity-grid h3 {
  color: #FFB800;
  font-size: 1.25rem;
  margin-bottom: 5px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .feature-grid, .activity-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* Cards and Lists */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(39,81,133,0.13);
  padding: 25px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}

/* FLEXIBLE GRIDS/LISTS */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TESTIMONIALS & QUOTES */
.testimonials {
  background: #F4F8FB;
  border-radius: 24px;
  margin-bottom: 64px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 20px rgba(39,81,133,0.10);
  margin-bottom: 20px;
  color: #222;
}
.testimonial-card blockquote {
  color: #234;
  font-size: 1.1rem;
  border-left: 6px solid #FFB800;
  margin: 0;
  padding-left: 18px;
}
.testimonial-card p {
  color: #234;
  font-weight: 700;
  margin-left: 10px;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }
}

/* FORMS, FILTERS, SEARCH BAR */
.search-bar {
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.search-bar input[type="text"] {
  border-radius: 8px;
  padding: 8px 14px;
  border: 2px solid #FFB800;
  background: #fff;
  font-size: 1rem;
  color: #2d2d2d;
  transition: border-color .13s;
}
.search-bar input[type="text"]:focus {
  border-color: #275185;
}
.filters, .activity-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 0 0;
}
.filters li, .activity-categories li {
  background: #FFB800;
  color: #222;
  border-radius: 18px;
  padding: 8px 16px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.filters li:hover, .filters li:focus, .activity-categories li:hover, .activity-categories li:focus {
  background: #275185;
  color: #fff;
}
.activity-categories img {
  height: 28px;
  width: 28px;
  margin-right: 8px;
  vertical-align: middle;
}

/* Buttons Primary/Secondary */
button, .button, .cta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 48px;
  padding: 12px 32px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .16s, transform .12s;
  box-shadow: 0 2px 12px rgba(39,81,133,0.07);
  margin-bottom: 10px;
}
.cta.secondary, .button.secondary {
  background: #275185;
  color: #fff; 
}
.cta.secondary:hover, .button.secondary:hover {
  background: #FFB800;
  color: #222;
}

/* FOOTER */
footer {
  background: #F4F8FB;
  padding: 36px 0 0 0;
  border-top: 3px solid #FFB800;
  margin-top: 56px;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 10px;
  padding: 0 12px 0 12px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
footer .brand-info {
  flex: 1 1 180px;
}
.footer-nav, .legal-links, .contact-info, .social-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1 1 150px;
  min-width: 140px;
}
.footer-nav h3, .contact-info h3, .social-links h3 {
  color: #275185;
  margin-bottom: 3px;
}
.legal-links {
  flex: 1 1 100px;
}
.social-links {
  flex-direction: column;
  gap: 6px;
}
.social-links a {
  display: inline-block;
  margin-right: 8px;
}
.social-links img {
  height: 32px;
  width: 32px;
  transition: filter .18s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: brightness(1.22) drop-shadow(0 2px 8px #FFB80088);
}
footer nav a {
  color: #275185;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 3px 0;
  font-size: 1rem;
  transition: color .15s;
}
footer nav a:hover, footer nav a:focus {
  color: #FFB800;
}
@media (max-width: 1020px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}

/* WIDGETS/SPECIAL ELEMENTS */
.weather-widget {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(39,81,133,0.09);
  padding: 16px 20px;
  margin: 18px 0;
}
.weather-widget img {
  height: 56px;
  width: 56px;
}

.event-highlights {
  background: #FFB800;
  color: #222;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 3px 18px rgba(39,81,133,0.11);
  margin: 24px 0 0 0;
}
.event-highlights h3 {
  color: #275185;
  margin-bottom: 4px;
}

.indoor-activity-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 26px;
  margin: 24px 0;
}
.indoor-activity-list li {
  background: #fff;
  border: 2px solid #FFB800;
  border-radius: 14px;
  padding: 14px 18px;
  color: #234;
  flex: 1 1 220px;
  min-width: 160px;
  margin-bottom: 12px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .indoor-activity-list {
    flex-direction: column;
    gap: 12px;
  }
}

/* LEGAL/INFO */
.legal ul li {
  margin-bottom: 12px;
}
.legal h1, .legal h2 {
  color: #275185;
}

/* CTA Banner Section */
.cta {
  background: #275185;
  color: #fff;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px !important;
  text-align: center;
  box-shadow: 0 4px 20px rgba(39,81,133,0.11);
  flex-direction: column;
  display: flex;
  gap: 12px;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .cta.primary {
  background: #FFB800;
  color: #222;
}
.cta .cta.primary:hover, .cta .cta.primary:focus {
  background: #fff;
  color: #275185;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero { border-radius: 20px; padding: 38px 0; }
  .cta { border-radius: 15px; }
}
@media (max-width: 480px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .hero, .cta, .features, section, .section { padding: 18px 2px; }
  h1, h2 { margin-bottom: 14px; }
}

/* Z-INDEX LAYER COMPLIANCE */
.mobile-menu,
.cookie-banner,
.cookie-modal {
  z-index: 9999;
}

/* -------- COOKIE CONSENT BANNER --------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 -2px 16px rgba(39,81,133,0.13);
  border-top: 3px solid #FFB800;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 18px;
  min-height: 60px;
  width: 100vw;
  transition: transform .40s cubic-bezier(.8,.14,.2,1), opacity .21s;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-text {
  color: #275185;
  flex: 1 1 400px;
  font-size: 1rem;
  margin-right: 16px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 24px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
  border: none;
  box-shadow: 0 2px 8px rgba(39,81,133,0.07);
  transition: background .16s, color .16s, transform .10s;
}
.cookie-accept {
  background: #FFB800;
  color: #222;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #275185;
  color: #fff;
}
.cookie-reject {
  background: #fff;
  color: #275185;
  border: 2px solid #275185;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #275185;
  color: #fff;
}
.cookie-settings {
  background: #F4F8FB;
  color: #222;
  border: 2px solid #FFB800;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #FFB800;
  color: #222;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 4px 18px 7px;
    gap: 12px;
  }
  .cookie-banner-text {
    margin-right: 0;
  }
  .cookie-banner-actions {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }
}

/* -------- COOKIE MODAL --------- */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(39,81,133,0.13);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10003;
  transition: opacity .19s;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 64px rgba(39,81,133,0.16);
  padding: 38px 32px 26px 32px;
  max-width: 98vw;
  min-width: 310px;
  width: 400px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #275185;
  font-size: 1.4rem;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FFB800;
  color: #222;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: none;
  cursor: pointer;
  transition: background .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #275185;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 18px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #FFB800;
  border-radius: 7px;
}
.cookie-category.essential label, .cookie-category.essential span {
  color: #aaa;
}
.cookie-modal-footer {
  display: flex;
  gap: 13px;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-footer button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 18px;
  font-size: 1rem;
  padding: 10px 20px;
  font-weight: 700;
  border: none;
  margin-bottom: 0;
  background: #FFB800;
  color: #222;
  transition: background .12s, color .12s;
}
.cookie-modal-footer button:hover, .cookie-modal-footer button:focus {
  background: #275185;
  color: #fff;
}

@media (max-width: 520px) {
  .cookie-modal-content {
    padding: 20px 6px 18px 8px;
    width: 99vw;
    min-width: 0;
    border-radius: 14px;
  }
}

/* MICRO-INTERACTIONS, Transitions & Hover Effects */
a, .cta, button, .feature-grid li, .activity-grid li, .card, .event-highlights, .testimonial-card, .filters li, .activity-categories li {
  transition: box-shadow .18s, background .16s, color .14s, transform .13s;
}
.card:hover, .feature-grid li:hover, .activity-grid li:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(39, 81, 133, 0.14);
  z-index: 2;
}
.filters li:active, .activity-categories li:active {
  transform: scale(0.96);
  box-shadow: none;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid #FFB800;
  outline-offset: 4px;
  border-radius: 8px;
}

/* --- Misc Utility --- */
.visually-hidden { position:absolute!important; height:1px; width:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* Section Spacing ENFORCEMENT */
section, .section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Prevent overlap between components */
section, .section,
.card, .card-container, .feature-grid li, .activity-grid li, .testimonial-card, .event-highlights {
  margin-bottom: 20px;
}

/* Hide overflow for mobile nav & modal backdrop */
body.no-scroll {
  overflow: hidden !important;
}
