/* RESET & BASE ----------- */
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,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,main,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 { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', Georgia, 'Times New Roman', Times, serif;
  background: #F6F5F5;
  color: #36332e;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
}
section { margin-bottom: 60px; padding: 40px 20px; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 6px;
}

/* TYPOGRAPHY ----------- */
h1, .section-title {
  font-family: 'Montserrat', Georgia, Times, 'Times New Roman', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #22577A;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Montserrat', Georgia, Times, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #22577A;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Montserrat', Georgia, Times, 'Times New Roman', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #22577A;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Georgia, Times, 'Times New Roman', serif;
  color: #22577A;
}
p, ul, ol, li, label, input, textarea {
  font-family: 'Roboto', 'Georgia', Times, 'Times New Roman', serif;
}
p, ul, ol {
  color: #44423a;
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
ul, ol {
  padding-left: 18px;
  margin-bottom: 18px;
}
subheadline, .subheadline {
  font-size: 1.1rem;
  font-family: 'Roboto', 'Georgia', serif;
  color: #22577A;
  font-style: italic;
  margin-bottom: 16px;
}
strong { font-weight: bold; }
.section .text-section {
  margin-right: 0;
}
.text-section {
  max-width: 860px;
  margin: 0 auto 0 0;
}
/* LINKS ----------- */
a {
  color: #22577A;
  text-decoration: none;
  transition: color 0.2s ease, box-shadow 0.2s;
}
a:hover, a:focus {
  color: #38A3A5;
  text-decoration: underline;
  box-shadow: 0 2px 0 0 #38A3A5;
}

/* HEADER & NAV ----------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 24px rgba(34,87,122,0.03);
  z-index: 200;
  position: sticky;
  top: 0;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  font-family: 'Montserrat', serif;
  font-size: 1.06rem;
}
nav a {
  color: #22577A;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
nav a:hover, nav a.active {
  color: #fff;
  background: #22577A;
}
nav a img { margin-right: 12px; vertical-align: middle; }
nav a:first-child img { margin-right: 0; }

/* MOBILE MENU ----------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #22577A;
  margin-left: auto;
  z-index: 250;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #38A3A5;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0px 0px 40px 0 rgba(34,87,122,0.18);
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.56,.02,.48,1.04);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #22577A;
  margin: 18px 22px 8px 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  color: #22577A;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 18px 0;
  width: 100%;
  border-radius: 0;
  transition: background 0.13s, color 0.13s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #22577A;
  color: #fff;
}

/* MAIN WRAPPERS ----------- */
main {
  min-height: 64vh;
  margin-bottom: 48px;
  margin-top: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  padding-top: 12px;
}

/* FLEX CARD PATTERNS ----------- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin: 16px 0 5px 0;
}
.feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(34,87,122,0.09);
  padding: 32px 22px;
  min-width: 240px;
  flex: 1 1 220px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .24s;
}
.feature img {
  width: 38px;
  margin-bottom: 7px;
}
.feature:hover {
  box-shadow: 0 6px 32px rgba(56,163,165,0.12);
  z-index: 2;
}

.card-container, .activity-cards, .indoor-activity-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 16px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(34,87,122,0.07);
  padding: 30px 22px 24px 22px;
  min-width: 220px;
  flex: 1 1 210px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .22s, background .17s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(56,163,165,0.16);
  background: #f6fbfa;
  z-index: 2;
}
/* Individual card styles for lists */
.activity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin: 18px 0 0 0;
}
.activity-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(34,87,122,0.07);
  padding: 28px 21px 19px 21px;
  min-width: 220px;
  flex: 1 1 210px;
  display: flex; flex-direction: column; justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .22s, background .17s;
}
.activity-item img { width: 36px; }
.activity-item:hover {
  box-shadow: 0 6px 24px rgba(56,163,165,0.17);
  background: #f8fcfc;
}

/* TESTIMONIALS ----------- */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(34,87,122,0.11);
  padding: 30px 32px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  transition: box-shadow .20s;
  max-width: 355px;
}
.testimonial-card p {
  color: #262017;
  font-size: 1.14rem;
  font-family: 'Georgia', Times, serif;
  font-style: italic;
  line-height: 1.7;
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: #49717A;
}
.testimonial-info img {
  width: 19px;
}

/* QUICK FILTERS/TAGS ----------- */
.quick-filters,
.weather-filter,
.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  margin-top: 10px;
}
.quick-filters span,
.weather-filter span,
.tag-filters span {
  background: #22577A;
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Montserrat', serif;
  border-radius: 12px;
  padding: 5px 14px;
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}

/* BUTTONS & CTA ----------- */
.cta, button, .newsletter-signup button {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  margin-top: 6px;
  background: #22577A;
  color: #fff;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(34,87,122,0.07);
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background .19s, box-shadow .21s, color .14s;
  text-align: center;
  outline: none;
  text-decoration: none;
}
.cta.primary { background: #22577A; color: #fff; }
.cta.secondary {
  background: #fff;
  color: #22577A;
  border: 2px solid #22577A;
  box-shadow: 0 2px 10px rgba(56,163,165,.09);
}
.cta.primary:hover, .cta.primary:focus, .newsletter-signup button:hover {
  background: #38A3A5;
  color: #fff;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #22577A;
  color: #fff;
}
button:active, .cta:active {
  outline: none;
  box-shadow: 0 4px 18px rgba(34,87,122,0.12);
}

/* CATEGORY TABS ----------- */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 26px;
  list-style: none;
  padding: 0;
}
.category-tabs li {
  font-family: 'Montserrat', serif;
  background: #fff;
  color: #22577A;
  border: 1.3px solid #22577A;
  padding: 9px 22px;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .18s, color .18s;
  margin-bottom: 6px;
}
.category-tabs li:hover, .category-tabs li.active {
  background: #22577A;
  color: #fff;
}

/* FORMS ----------- */
form, .newsletter-signup {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 24px 0 0 0;
  flex-wrap: wrap;
}
.newsletter-signup {
  flex-direction: row;
}
.newsletter-signup label {
  font-size: 1rem;
  font-family: 'Montserrat', serif;
  color: #22577A;
  font-weight: 500;
  margin-right: 8px;
}
.newsletter-signup input[type="email"] {
  border: 1px solid #38A3A5;
  border-radius: 18px;
  font-family: 'Roboto', 'Georgia', serif;
  padding: 7px 16px;
  font-size: 1rem;
  outline: none;
  margin-right: 8px;
  background: #fff;
  color: #23221e;
  transition: border-color 0.16s;
}
.newsletter-signup input[type="email"]:focus {
  border: 1.5px solid #22577A;
}

/* FOOTER ----------- */
footer {
  background: #fff;
  border-top: 2px solid #e1e2e2;
  color: #36332e;
  padding: 46px 0 36px 0;
  margin-top: 16px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  color: #22577A;
  font-size: 1rem;
  padding: 2px 0;
}
.footer-links a:hover { color: #38A3A5; }
.contact-information {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #44423a;
  font-size: 1rem;
}
.contact-information img {
  width: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
.social-links {
  display: flex;
  gap: 16px;
  margin: 5px 0;
}
.social-links a img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  box-shadow: 0 1px 7px rgba(34,87,122,0.1);
  transition: box-shadow .18s;
  background: #fff;
  padding: 2px;
}
.social-links a img:hover { box-shadow: 0 2px 12px #38A3A5aa; }

/* Content section patterns ----------- */
.steps-list, .tip-list {
  padding-left: 22px;
  margin-bottom: 12px;
  color: #36332e;
}
.steps-list li, .tip-list li {
  margin-bottom: 9px;
  font-size: 1rem;
}
.map-section, .service-hours {
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-hours img { width: 24px; }

/* Weather widget and planning tips */
.weather-widget {
  background: #f4f7fa;
  border-radius: 9px;
  padding: 18px 24px;
  color: #22577A;
  margin-bottom: 22px;
  font-size: 1.09rem;
  box-shadow: 0 2px 10px rgba(34,87,122,0.06);
}
.activity-suggestions-by-weather,
.planning-tips {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
  padding: 18px 24px;
  box-shadow: 0 2px 8px rgba(34,87,122,0.06);
}
.activity-suggestions-by-weather h3,
.planning-tips h3 {
  margin-bottom: 10px;
}

/* Cookie Consent ----------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  background: #fff;
  color: #2a2a2b;
  border-top: 2px solid #22577A;
  width: 100vw;
  z-index: 4400;
  box-shadow: 0 -2px 34px rgba(37,86,122,0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 12px 18px 12px;
  gap: 24px;
  font-size: 1.05rem;
  font-family: 'Roboto', serif;
  transition: transform .3s ease, opacity .3s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  max-width: 780px;
  font-size: 0.97rem;
  color: #36332e;
  margin-right: 26px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-banner button,
.cookie-banner .settings-btn {
  font-size: 1rem;
  padding: 8px 26px;
  border-radius: 24px;
  border: none;
  margin: 0 4px;
  font-family: 'Montserrat', serif;
  background: #22577A;
  color: #fff;
  cursor: pointer;
  transition: background .19s, color .13s, box-shadow .12s;
}
.cookie-banner button.reject {
  background: #fff;
  color: #22577A;
  border: 2px solid #22577A;
}
.cookie-banner button.reject:hover { background: #22577A; color: #fff; }
.cookie-banner .settings-btn {
  background: #38A3A5;
  color: #fff;
}
.cookie-banner .settings-btn:hover { background: #22577A; }

/* COOKIE MODAL ----------- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,87,122,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .3s;
}
.cookie-modal.hide { opacity: 0; pointer-events: none; }
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 48px rgba(34,87,122,0.16);
  padding: 36px 28px 28px 28px;
  min-width: 325px; max-width: 95vw;
  display: flex; flex-direction: column; gap: 20px;
  font-family: 'Roboto', serif;
  color: #2d2c2c;
  position: relative;
  animation: fadeInScale .23s;
}
@keyframes fadeInScale {
  from { opacity: 0; transform: scale(.93); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  font-family: 'Montserrat', serif;
  color: #22577A;
  margin-bottom: 6px;
}
.cookie-modal-content .category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-modal-content .essential {
  font-weight: bold;
  color: #38A3A5;
  font-size: 1.01rem;
}
.cookie-modal-content .toggle {
  appearance: none;
  width: 36px; height: 19px;
  background: #e2e4e9;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background .18s;
}
.cookie-modal-content .toggle:checked {
  background: #38A3A5;
}
.cookie-modal-content .toggle:before {
  display: block;
  content: '';
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 3px;
  transition: left .18s;
}
.cookie-modal-content .toggle:checked:before {
  left: 18px;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-content button {
  font-family: 'Montserrat', serif;
  padding: 8px 30px;
  border-radius: 20px;
  border: none;
  background: #22577A;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background .18s;
  margin-left: 2px;
}
.cookie-modal-content button.cancel {
  background: #fff;
  border: 2px solid #22577A;
  color: #22577A;
}
.cookie-modal-content button.cancel:hover {
  background: #22577A;
  color: #fff;
}

/* RESPONSIVE ----------- */
@media (max-width: 1100px) {
  .footer-content { gap: 24px; }
  nav { gap: 13px; }
}
@media (max-width: 900px) {
  h1, .section-title { font-size: 2rem; }
  .footer-content {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .newsletter-signup {
    flex-direction: column;
    gap: 10px;
  }
  .features-grid, .card-container, .activity-list, .activity-cards, .indoor-activity-cards, .testimonials-slider {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 32px 5vw;
    margin-bottom: 30px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    padding-top: 0;
    gap: 15px;
  }
  .features-grid, .card-container, .activity-list, .activity-cards, .indoor-activity-cards, .testimonials-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card, .card, .feature, .activity-item {
    max-width: 98vw;
    min-width: 0;
  }
  .steps-list, .tip-list {
    padding-left: 12px;
  }
  .footer-content {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 0;
  }
  .newsletter-signup { flex-direction: column; gap: 6px; }
}
@media (max-width: 540px) {
  section {
    padding: 24px 2vw;
    margin-bottom: 20px;
  }
  h1, .section-title { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
  .footer-content img { width: 55px; }
}

/* ANIMATIONS ----------- */
.cta, .newsletter-signup button, .cookie-banner button, .category-tabs li, .feature, .card, .activity-item, .testimonial-card {
  transition: box-shadow .20s, background .15s, color .13s, transform .13s;
}
.cta:active, .newsletter-signup button:active {
  transform: scale(0.97);
}
.testimonial-card:hover { box-shadow: 0 8px 32px #38A3A533; }
.card:focus-within, .feature:focus-within { box-shadow: 0 6px 32px #38A3A516; }

/* UTILITIES & STRUCTURE -----------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* FOCUS OUTLINES ----------- */
a, button, .cta, .newsletter-signup input[type="email"] {
  outline: none;
  box-shadow: none;
}
a:focus, button:focus, .cta:focus, .newsletter-signup input[type="email"]:focus {
  outline: 2px solid #38A3A5;
  outline-offset: 2px;
}

/* MISCELLANEOUS ----------- */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #e6eded;
  border-radius: 9px;
}
::-webkit-scrollbar-track {
  background: #f6f5f5;
}

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
