/* --- CSS Reset & Normalize --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F7F5F0;
  color: #1F3123;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: #306847;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 { font-size: 2.25rem; letter-spacing: 0.01em; margin-bottom: 18px; }
h2 { font-size: 1.5rem; margin-bottom: 12px; }
h3 { font-size: 1.125rem; margin-bottom: 8px; }

p, ul, ol, li {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #324730;
  margin-bottom: 12px;
}

strong {
  color: #306847;
}
a {
  color: #306847;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #9A6300;
}

ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 8px;
}

blockquote {
  font-style: italic;
  color: #435b47;
  background: #f7f5f0;
  border-left: 4px solid #b58b4a;
  padding: 12px 18px 12px 20px;
  margin-bottom: 12px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(48, 104, 71, 0.07);
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.subheadline {
  color: #4F6652;
  font-size: 1.125rem;
  margin-bottom: 18px;
  line-height: 1.5;
}

.cta-btn {
  padding: 12px 36px;
  background: #306847;
  color: #fff;
  border: none;
  border-radius: 40px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(48, 104, 71, 0.08);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.18s, color 0.18s, box-shadow 0.25s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #9A6300;
  color: #fff;
  box-shadow: 0 4px 16px rgba(154, 99, 0, 0.10);
  text-decoration: none;
}

/* --- HEADER --- */
header {
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(48, 104, 71, 0.06);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1500;
}
header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 28px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #306847;
  text-decoration: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0px;
  transition: color .15s;
}
header nav a:hover, header nav a:focus {
  color: #9A6300;
}

header img {
  height: 46px;
  width: auto;
}

/* Burger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #306847;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 12px;
  z-index: 1801;
  box-shadow: 0 2px 6px rgba(48,104,71,0.09);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f2eee6;
  color: #9A6300;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 85vw;
  max-width: 340px;
  background: #fff;
  box-shadow: -4px 0 20px rgba(48,104,71,0.13);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.7,0,.3,1);
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0%);
  transition: transform .38s cubic-bezier(.26,.67,.59,1.14);
}
.mobile-menu-close {
  background: #fff;
  color: #306847;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 18px;
  cursor: pointer;
  border-radius: 7px;
  padding: 4px 12px;
  box-shadow: 0 1px 5px rgba(48,104,71,0.05);
  z-index: 2100;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f2eee6;
  color: #9A6300;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.mobile-nav a {
  font-size: 1.075rem;
  color: #306847;
  text-decoration: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 12px 0;
  border-radius: 8px;
  transition: background .12s, color .15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F7F5F0;
  color: #9A6300;
}

/* Hide desktop nav on small screens, show burger */
@media (max-width: 1024px) {
  header > .container nav,
  header > .container .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* --- MAIN LAYOUT & CONTAINERS --- */
main {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(48, 104, 71, 0.08);
}
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Cards & Grids */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(48,104,71,.07);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow .21s, transform .19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 5px 20px rgba(154, 99, 0, 0.08);
  transform: translateY(-4px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #F7F5F0;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(48,104,71,0.06);
  margin-bottom: 22px;
  margin-top: 8px;
}
.testimonial-card blockquote {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 400;
  color: #293D2D;
  background: none;
  border-left: 5px solid #B58B4A;
  padding-left: 18px;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.reviewer {
  color: #306847;
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 500;
}

.feature-grid,
.feature-highlights,
.service-list,
.park-list,
.place-list,
.city-spotlight-list,
.route-list,
.next-steps,
.tip-cards ul,
.microadventure-ideas ul,
.relaxation-spots ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 0 0;
  list-style: none;
}

/* Each card or list item in these layouts: */
.feature-grid li, .feature-highlights li, .service-list li, .service-list div, .park-list li, .place-list li, .city-spotlight-list li, .route-list li, .tip-cards ul li, .microadventure-ideas ul li, .relaxation-spots ul li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(48,104,71,0.07);
  padding: 20px 22px;
  min-width: 220px;
  flex: 1 1 258px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.17s;
}
.feature-grid li:hover, .feature-highlights li:hover, .service-list li:hover, .service-list div:hover, .park-list li:hover, .place-list li:hover, .city-spotlight-list li:hover, .route-list li:hover, .tip-cards ul li:hover {
  box-shadow: 0 4px 14px rgba(154, 99, 0, 0.10);
  transform: translateY(-3px) scale(1.01);
}


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

.address-details {
  background: #F7F5F0;
  border-radius: 14px;
  padding: 18px 24px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.025rem;
}

.quick-faq {
  background: #FCFAF6;
  border-radius: 12px;
  padding: 16px 22px;
  margin-top: 16px;
  box-shadow: 0 1px 5px rgba(48,104,71,0.04);
}
.quick-faq h3 {
  margin-bottom: 10px;
  color: #9A6300;
  font-size: 1.07rem;
}

/* --- FOOTER --- */
footer {
  background: #ECE9E2;
  box-shadow: 0 -2px 8px rgba(48,104,71,0.08);
  padding: 32px 0 0 0;
  margin-top: 40px;
}
footer > .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
footer nav a {
  color: #306847;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: underline;
  padding: 4px 0px;
  transition: color .12s;
}
footer nav a:hover, footer nav a:focus {
  color: #9A6300;
}
.footer-branding {
  margin: 10px 0 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #324730;
  font-size: 0.98rem;
  opacity: 0.90;
}
.footer-branding img {
  display: inline-block;
  height: 28px;
  width: auto;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .feature-highlights, .service-list, .park-list, .place-list, .city-spotlight-list, .route-list, .next-steps, .content-grid, .tip-cards ul, .microadventure-ideas ul, .relaxation-spots ul {
    gap: 14px;
  }
  .card { min-width: 180px; }
  section { padding: 32px 4vw; }
}
@media (max-width: 768px) {
  .container {
    max-width: 95vw;
  }
  section {
    padding: 24px 2vw;
    margin-bottom: 36px;
  }
  .feature-grid, .feature-highlights, .service-list, .park-list, .place-list, .city-spotlight-list, .route-list, .next-steps, .content-grid, .tip-cards ul, .microadventure-ideas ul, .relaxation-spots ul {
    flex-direction: column;
    gap: 10px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .footer-branding {
    flex-direction: column;
    gap: 5px;
    align-items: center;
  }
}
@media (max-width: 550px) {
  html { font-size: 15px; }
  section {
    border-radius: 10px;
    box-shadow: none;
    margin-bottom: 22px;
    padding: 16px 0;
  }
}
@media (max-width: 400px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.03rem; }
}

/* --- Cookie Consent Banner & Modal --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2500;
  background: #fff;
  border-top: 2px solid #B58B4A;
  box-shadow: 0 -3px 15px rgba(48,104,71,0.10);
  padding: 24px 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  transition: transform .24s, opacity .22s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 7px;
}
.cookie-banner button {
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  margin: 0 2px;
  transition: background .18s, color .17s;
}
.cookie-banner .accept-btn {
  background: #306847;
  color: #fff;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus { background: #9A6300; }
.cookie-banner .reject-btn {
  background: #F7F5F0;
  color: #306847;
  border: 1.2px solid #b58b4a;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #E7E2D7;
  color: #9A6300;
}
.cookie-banner .settings-btn {
  background: #fff3e4;
  color: #9A6300;
  border: 1.2px solid #b58b4a;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #FFF8EB;
  color: #306847;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2600;
  background: rgba(48,104,71,0.23);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(48,104,71,0.18);
  max-width: 420px;
  width: 92vw;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  color: #306847;
  margin-bottom: 6px;
  font-size: 1.2rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #324730;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  background: #ECE9E2;
  border-radius: 24px;
  top: 0; left: 0;
  right: 0; bottom: 0;
  transition: background .17s;
}
.cookie-modal .slider:before {
  position: absolute; content: '';
  height: 18px; width: 18px;
  left: 3px;
  bottom: 3px;
  background: #306847;
  border-radius: 50%;
  transition: transform .18s, background .19s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #B58B4A;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  background: #fff;
  transform: translateX(16px);
}
.cookie-modal button.close-modal {
  position: absolute;
  right: 18px; top: 16px;
  background: transparent;
  color: #B58B4A;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 8px;
  padding: 2px 10px;
}
.cookie-modal .save-btn {
  background: #306847;
  color: #fff;
  border: none;
  border-radius: 21px;
  padding: 10px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 14px;
  cursor: pointer;
  transition: background .18s;
}
.cookie-modal .save-btn:hover, .cookie-modal .save-btn:focus {
  background: #9A6300;
}

/* --- Miscellaneous / Utilities --- */
::-webkit-input-placeholder { color: #afadad; }
::-moz-placeholder { color: #afadad; }
:-ms-input-placeholder { color: #afadad; }
::placeholder { color: #afadad; }

/* Remove outline for mouse users, keep for keyboard navigation */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #B58B4A;
  outline-offset: 2px;
}

hr {
  border: none;
  border-top: 1px solid #ECE9E2;
  margin: 32px 0;
}

/* --- SCANDINAVIAN INSPIRED SHADOWS & RADIUS --- */
.shadow-light {
  box-shadow: 0 2px 16px rgba(48,104,71, 0.06);
}
.rounded-xl {
  border-radius: 20px;
}

/* --- Animations --- */
@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fade-in-up .9s cubic-bezier(.33,.46,.42,1) both;
}

@media (max-width: 450px) {
  .cookie-modal {
    padding: 16px 7px;
    border-radius: 10px;
  }
}

/* --- Accessibility fix for testimonial contrast --- */
.testimonial-card, .testimonial-card blockquote, .reviewer {
  color: #1F3123 !important;
  background: #F7F5F0 !important;
  text-shadow: none;
}

/* --- Misc Specific Layout Patterns (for reuse if dynamic content) --- */
.features, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card-grid { justify-content: space-between; }

/* Utility: spacing helpers */
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.gap-20 { gap: 20px; }

/* --- Custom scrollbar for overlay/menu --- */
.mobile-menu, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: #B58B4A #fff;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  height: 8px; width: 6px;
  background: #fff;
}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal::-webkit-scrollbar-thumb {
  background: #b58b4a;
  border-radius: 4px;
}

/* --- End of CSS for all pages --- */