/* -------------------------------------------------
 Fuzzy Landscape – Vintage Retro Style CSS
 Author: Senior CSS/UI Team
 --------------------------------------------------*/

/* ----------------------
 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
}

/* ----------------------
 VINTAGE RETRO THEME VARIABLES
----------------------- */
:root {
  --primary: #245D36;
  --secondary: #1789A3;
  --accent: #F7EAD7;
  --dark: #232014;
  --retro-orange: #DA8149;
  --retro-yellow: #F3C87A;
  --retro-green: #88A45B;
  --retro-brown: #B58962;
  --retro-cream: #FAF3EC;
  --white: #FFF8F2;
  --black: #232014;
  --shadow: 0 2px 16px rgba(40,30,13,0.09);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', 'Helvetica', sans-serif;
  --font-body: 'Roboto', 'Avenir Next', Arial, sans-serif;
}

/* ----------------------
 GENERAL TYPOGRAPHY
----------------------- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: var(--retro-cream);
  color: var(--primary);
  font-family: var(--font-body);
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  text-shadow: 1px 1px 0 var(--retro-yellow), 0 2px 8px #caa7722f;
}
h2 {
  font-size: 2rem;
  color: var(--retro-orange);
  text-shadow: 1px 1px 0 #f9e7cd77;
}
h3 {
  font-size: 1.35rem;
}
h4 {
  font-size: 1.1rem;
}
p, ul, li, blockquote {
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  color: var(--retro-brown);
  font-weight: 700;
}
a {
  transition: color 0.18s;
  border-bottom: 1.5px dotted var(--retro-orange);
  color: var(--secondary);
}
a:hover, a:focus {
  color: var(--retro-orange);
  border-bottom: 2px solid var(--retro-orange);
  text-shadow: 0 2px 4px #ffd8b071;
}
hr {
  border: 0;
  border-top: 1.5px dashed var(--retro-brown);
  margin: 32px 0;
}

/* ----------------------
 FLEX LAYOUTS CONTAINERS
----------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--accent);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 0 8px #d6b07433;
  margin-bottom: 20px;
  position: relative;
  padding: 20px 18px;
  min-width: 230px;
  flex: 1 1 250px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-6px) scale(1.018);
  box-shadow: 0 6px 24px #245d3627;
  border: 1.5px solid var(--retro-orange);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 3px 20px #8a754e11;
  border-radius: var(--border-radius-sm);
  margin-bottom: 20px;
  padding: 20px 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
  border-left: 8px solid var(--retro-brown);
  position: relative;
}
.testimonial-card:before {
  content: url('assets/icons/retro-quote.svg');
  position: absolute;
  left: 8px;
  top: -14px;
  opacity: 0.6;
  font-size: 1.2rem;
  display: block;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px;
  background: var(--retro-yellow);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 1px 6px #baa98622;
}

/* Spacing between any content blocks */
section, .section, .card, .testimonial-card, .feature-item {
  margin-bottom: 24px;
}
/* Target all inner section lists spacing */
ul li {
  margin-bottom: 12px;
}

/* ----------------------
 HEADER & NAVIGATION
----------------------- */
header {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 74px;
  position: relative;
}
header a img {
  height: 50px;
  width: auto;
  padding: 8px 0;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  opacity: 0.96;
  border-bottom: none;
  padding: 6px 0 2px 0;
  position: relative;
  transition: color 0.15s;
}
header nav a:hover, header nav a.active {
  color: var(--retro-yellow);
  text-decoration: none;
  border-bottom: 2.5px solid var(--retro-orange);
}
.cta-primary {
  background: var(--retro-orange);
  color: var(--primary);
  font-family: var(--font-display);
  border-radius: 40px;
  font-size: 1.08rem;
  font-weight: bold;
  padding: 12px 36px;
  margin-left: 30px;
  box-shadow: 0 2px 14px #b4873950;
  letter-spacing: 0.04em;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.09s;
  outline: none;
  cursor: pointer;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 6px 28px #14757734;
  transform: scale(1.04) translateY(-2px);
}
/* ----------------------
 MOBILE NAVIGATION
----------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-orange);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 44px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, box-shadow 0.15s, color 0.18s;
  position: relative;
  z-index: 105;
  border: none;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--accent);
  box-shadow: 0 0 8px #3ac4c444;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  background: var(--primary);
  z-index: 200;
  padding: 36px 24px 0 24px;
  box-shadow: 2px 0 32px #16361756;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.7,0,0.18,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  color: var(--accent);
  background: none;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  border-radius: 44px;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--retro-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.23rem;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 0 10px 4px;
  border-radius: 8px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--retro-brown);
  color: var(--white);
}

@media (max-width: 1024px) {
  header nav {
    gap: 20px;
  }
  .cta-primary {
    margin-left: 12px;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 10px;
  }
}
@media (max-width: 830px) {
  header nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/*---------------------
 MAIN SECTIONS & LAYOUT
----------------------*/
main {
  background: var(--retro-cream);
  min-height: 70vh;
}
.hero {
  background: repeating-linear-gradient(94deg, var(--accent) 0 28px, #f3c87a20 28px 54px, var(--retro-yellow) 54px 82px, var(--accent) 82px 140px);
  padding: 60px 0 48px 0;
  box-shadow: 0 8px 24px #d0b47015;
  border-bottom: 3px double var(--retro-brown);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.17rem;
  color: var(--retro-brown);
  margin-bottom: 20px;
}
.features {
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features .feature-grid li {
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 235px;
  background: var(--retro-yellow);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 1px 10px #baa98622;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 14px 18px 14px;
  text-align: left;
  border-left: 6px solid var(--retro-brown);
  transition: box-shadow 0.15s, transform 0.17s, border-left 0.16s;
}
.features .feature-grid li:hover {
  box-shadow: 0 8px 24px #c87c2a1d;
  transform: scale(1.045);
  border-left: 6px solid var(--primary);
}
.features .feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 12px;
  filter: sepia(0.3) contrast(1.2) brightness(0.97);
}
.features h3 {
  color: var(--primary);
  font-size: 1.13rem;
  margin-bottom: 4px;
}

.text-section a {
  font-weight: 600;
  color: var(--secondary);
  border-bottom: 1.5px dotted var(--secondary);
  transition: color 0.18s, border-color 0.18s;
}
.text-section a:hover {
  color: var(--retro-orange);
  border-bottom: 2px solid var(--retro-orange);
}

.about-preview, .about-details {
  background: var(--white);
  border: 2px dashed var(--retro-brown);
  border-radius: var(--border-radius);
  box-shadow: 0 0 6px #a6978540;
  padding: 36px 24px;
}
.testimonials-preview {
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 16px #d2682240;
  padding: 40px 24px;
}

/* Card Grids & Section Lists */
.routes-list ul, .park-overview ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 10px 0;
}
.routes-list ul li, .park-overview ul li {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  padding: 14px 15px;
  color: var(--primary);
  border-left: 5px solid var(--retro-green);
  font-family: var(--font-body);
  font-size: 1.01rem;
}
.park-overview ul li img {
  margin-right: 5px;
  vertical-align: middle;
}

.benefits, .tips {
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}
.services-overview ul, .tips-collection ul, .services-teaser ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0;
}
.services-overview ul li,
.tips-collection ul li, .services-teaser ul li {
  background: var(--white);
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  border-left: 4px solid var(--secondary);
  font-size: 1.02rem;
}

.contact-info, .contact-form {
  background: var(--accent);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 1px 12px #c6ab8a22;
  padding: 26px 18px;
}
.confirmation {
  background: var(--white);
  border: 2px dashed var(--retro-orang);
  border-radius: var(--border-radius);
  box-shadow: 0 0 5px #a6978540;
  padding: 36px 26px;
  text-align: center;
}
/* -----------
 TESTIMONIALS
------------- */
.testimonials-preview h2 {
  color: var(--retro-orange);
  margin-bottom: 12px;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.01rem;
  margin-bottom: 10px;
  line-height: 1.6;
  quotes: "\201E" "\201C" "\2018" "\2019";
}
.testimonial-card p {
  color: var(--dark);
  font-size: 0.98rem;
  font-style: italic;
}

/* --------
 LEGAL
--------- */
.legal {
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 38px 28px;
}
.legal h1 {
  color: var(--retro-orange);
}

/* --------
 FOOTER
--------- */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 36px 0 12px 0;
  margin-top: 60px;
  border-top: 3px double var(--retro-brown);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
footer nav a {
  color: var(--retro-yellow);
  letter-spacing: 0.03em;
  font-family: var(--font-display);
  font-size: 1.05rem;
  opacity: 0.92;
  transition: color 0.18s;
  border-bottom: none;
}
footer nav a:hover {
  color: var(--accent);
}
footer p {
  color: var(--accent);
  font-size: 0.94rem;
  padding-top: 8px;
}

/* ----------------------
 BUTTONS
----------------------- */
button, .button, .cta-primary {
  font-family: var(--font-display);
  cursor: pointer;
  border-radius: 40px;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.11s;
  outline: none;
}
.button-secondary {
  background: var(--secondary);
  color: var(--accent);
  font-weight: 600;
  font-size: 1.07rem;
  border-radius: 40px;
  padding: 9px 30px;
  border: none;
  box-shadow: 0 1px 12px #71b8c62a;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--retro-brown);
  color: var(--white);
  box-shadow: 0 2px 17px #7ad6e242;
  transform: scale(1.04);
}
.button-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px dashed var(--retro-orange);
  padding: 9px 28px;
  font-weight: 600;
  font-size: 1.04rem;
  box-shadow: none;
  border-radius: 40px;
  transition: background 0.17s, color 0.17s;
}
.button-ghost:hover, .button-ghost:focus {
  background: var(--retro-yellow);
  color: var(--secondary);
  border-color: var(--primary);
}

/* ---------
 MICRO-INTERACTIONS & TRANSITIONS
---------- */
a, .cta-primary, button, .button {
  transition: color 0.18s, background 0.18s, box-shadow 0.2s, border 0.14s, transform 0.11s;
}

/* -------------
 COOKIE CONSENT BANNER
--------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--retro-brown);
  color: var(--accent);
  box-shadow: 0 -4px 22px #b5896245;
  z-index: 350;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 22px 30px 21px 32px;
  gap: 25px;
  font-family: var(--font-body);
  font-size: 1.08rem;
  border-radius: 18px 18px 0 0;
  animation: cookieIn 0.7s cubic-bezier(.47,2,.34,.97);
}
@keyframes cookieIn { from { transform: translateY(120%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .button {
  padding: 10px 22px;
  border-radius: 32px;
  border: none;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-right: 0;
  font-weight: 600;
  transition: background 0.16s, color 0.16s, transform 0.13s;
}
.cookie-banner .accept {
  background: var(--retro-green);
  color: var(--white);
}
.cookie-banner .accept:hover {
  background: var(--primary);
  color: var(--retro-yellow);
  transform: scale(1.04);
}
.cookie-banner .reject {
  background: var(--retro-orange);
  color: var(--primary);
}
.cookie-banner .reject:hover {
  background: var(--primary);
  color: var(--accent);
  transform: scale(1.04);
}
.cookie-banner .settings {
  background: transparent;
  color: var(--accent);
  border: 2px dashed var(--accent);
}
.cookie-banner .settings:hover {
  background: var(--retro-yellow);
  color: var(--primary);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 400;
  width: 100vw;
  height: 100vh;
  background: #232014b8;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.29s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--border-radius);
  box-shadow: 0 0 48px #82583647;
  min-width: 320px;
  max-width: 95vw;
  padding: 34px 38px 24px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  animation: showModal 0.48s ease;
  font-size: 1.06rem;
  position: relative;
}
@keyframes showModal {
  from { transform: scale(0.96) translateY(30px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 8px;
  border: none;
  background: transparent;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
  border-radius: 44px;
  width: 42px;
  height: 42px;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--retro-orange);
  color: var(--accent);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.cookie-category-row label {
  flex: 1;
  color: var(--primary);
  font-size: 1.03rem;
  font-weight: 500;
}
.cookie-category-row input[type="checkbox"] {
  accent-color: var(--retro-brown);
  width: 20px;
  height: 20px;
}
.cookie-category-row .always-on {
  color: var(--retro-orange);
  font-size: 0.97em;
  font-style: italic;
  margin-left: 7px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 18px;
}

/* ----------------------
 RESPONSIVE DESIGN & FLEX
----------------------- */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 10px; }
  .section { padding: 28px 8px; margin-bottom: 42px; }
  .card-container, .content-grid, .features .feature-grid { gap: 14px; }
  .content-wrapper { gap: 16px; }
  .hero { padding: 38px 0 18px 0; }
  .hero h1 { font-size: 1.66rem; }
  .hero p { font-size: 1rem; }
  .features .feature-grid { flex-direction: column; }
  .features .feature-grid li { max-width: 100%; }
  .testimonials-preview { padding: 24px 5px; }
  .about-preview, .about-details, .legal, .confirmation { padding: 23px 7px; }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    font-size: 0.97rem;
  }
  .testimonial-card:before { left: 1px; top: -11px; font-size: 0.8rem; }
  .content-grid, .text-image-section { flex-direction: column; gap: 12px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px 10px 13px 10px; font-size: 0.95rem; }
  .cookie-modal-content { min-width: 96vw; padding: 20px 7px 20px 7px; }
  header { flex-wrap:wrap; height:auto; padding: 0 7px; }
  .mobile-nav a { font-size: 1.08rem; }
  .mobile-menu { padding: 22px 7px 0 7px; }
}

@media (max-width: 480px) {
  html { font-size: 13.5px; }
  .container { padding: 0 4px; }
  h1 { font-size: 1.4rem; }
}

/* OTHER ADAPTIVE LAYOUTS */
@media (max-width:600px) {
  .content-wrapper { gap: 7px; }
}

/* Prevent any overlapping due to flex wrapping */
.card, .testimonial-card, .feature-item, .section, .about-preview, .about-details, .routes-list ul li, .services-overview ul li, .tips-collection ul li, .services-teaser ul li, .confirmation {
  min-width: 0;
  max-width: 100%;
}

/* Decorative vintage patterns */
.section:before {
  content: '';
  display: block;
  position: absolute;
  top: -32px;
  left: 24px;
  width: 92px;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--retro-yellow) 0 9px, var(--retro-orange) 9px 16px, var(--retro-yellow) 16px 24px, transparent 24px 32px);
  opacity: 0.24;
  pointer-events: none;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -24px;
  right: 22px;
  width: 80px;
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--retro-green) 0 11px, #fff6e6 11px 20px, transparent 20px 30px);
  opacity: 0.19;
  pointer-events: none;
}
@media (max-width: 600px) {
  .section:before, .section:after { display: none; }
}

/**************************************************/
/* END - Fuzzy Landscape VINTAGE RETRO CSS         */
/**************************************************/