/* ==== 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; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit;}
button, input, textarea, select { font-family: inherit; font-size: inherit; }
img, svg { display: block; max-width: 100%; height: auto; border: none; }

/* ==== IMPORT FONTS (Montserrat & Lato; Fallbacks included) ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Lato:400,700&display=swap');

:root {
  --primary: #24573D;
  --secondary: #7DBE6B;
  --accent: #F6F3EE;
  --white: #fff;
  --light: #FAF6F1;
  --dark: #22312a;
  --warning: #FFB87A;
  --shadow-soft: 0 4px 16px rgba(36,87,61,0.07), 0 1.5px 6px rgba(36,87,61,0.10);
  --shadow-card: 0 2px 12px rgba(65, 81, 63, 0.08), 0 0.5px 2px rgba(36,87,61,0.12);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 7px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Lato', Arial, Helvetica, sans-serif;
}

body {
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }
p, ul, ol {
  font-family: var(--font-body);
  color: var(--dark);
  font-size: 1rem;
  letter-spacing: 0;
}
p { margin-bottom: 18px; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 60;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-md);
  color: var(--primary);
  transition: background 0.19s, color 0.19s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--secondary);
  color: var(--white);
}
.main-nav img[alt="AuszeitReich"] {
  height: 38px;
  margin-right: 20px;
  border-radius: var(--radius-md);
}

/* ==== MOBILE MENU ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 2rem;
  cursor: pointer;
  margin: 10px 10px 10px auto;
  transition: background 0.15s;
  z-index: 102;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary);
}
.mobile-menu-toggle:hover {
  background: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  z-index: 105;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: var(--primary);
  border: none;
  font-size: 2.2rem;
  padding: 15px 20px 0 20px;
  align-self: flex-end;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 36px;
  margin-top: 22px;
  flex-grow: 1;
}
.mobile-nav a {
  font-family: var(--font-display);
  padding: 12px 0;
  font-size: 1.3rem;
  color: var(--primary);
  border-bottom: 1px solid var(--accent);
  transition: color 0.18s;
  border-radius: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--secondary);
  background: none;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== HERO SECTION ==== */
.hero, .hero-erholung, .hero-staedte, .hero-routen {
  background: var(--secondary);
  color: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
  padding: 48px 0 34px 0;
}
.hero h1, .hero-erholung h1, .hero-staedte h1, .hero-routen h1 {
  color: var(--white);
  font-size: 2.3rem;
  margin-bottom: 12px;
}
.hero p, .hero-erholung p, .hero-staedte p, .hero-routen p {
  color: var(--light);
  font-size: 1.18rem;
  font-family: var(--font-body);
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .hero, .hero-erholung, .hero-staedte, .hero-routen {
    padding: 26px 0 18px 0;
  }
  .hero h1, .hero-erholung h1, .hero-staedte h1, .hero-routen h1 {
    font-size: 1.5rem;
  }
}

/* ==== SECTIONS ==== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.about-short, .about, .why-us, .kontakt, .datenschutzerklaerung, .gdpr, .terms, .cookie-policy, .thankyou {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 60px;
  padding: 40px 20px;
}

.why-us ul, .datenschutzerklaerung ul, .gdpr ul, .terms ul, .cookie-policy ul {
  margin: 0 0 20px 16px;
  list-style: disc inside;
  color: var(--primary);
}
.why-us li, .datenschutzerklaerung li, .gdpr li, .terms li, .cookie-policy li {
  margin-bottom: 16px;
}

/* ==== FLEXBOX LAYOUT PATTERNS ==== */
.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;
  margin-bottom: 24px;
  border-radius: var(--radius-lg);
  background: var(--accent);
  box-shadow: var(--shadow-card);
  min-width: 0;
}
.testimonial-card:last-child { margin-bottom: 0; }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/**** Responsive flex directions for key patterns ****/
@media (max-width: 900px) {
  .card-container, .content-grid, .feature-grid, .stadt-list, .route-list, .park-list {
    flex-direction: column;
    gap: 24px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==== FEATURE GRID (Highlight Cards) ==== */
.feature-grid, .stadt-list, .route-list, .park-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
  border: 1.5px solid var(--accent);
}
.feature-card h3 a {
  color: var(--primary);
  transition: color 0.18s;
  border-radius: var(--radius-sm);
}
.feature-card h3 a:hover {
  text-decoration: underline;
  color: var(--secondary);
}
.feature-card img {
  height: 45px;
  width: 45px;
  margin-bottom: 8px;
}
.feature-card:hover, .park-card:hover, .tour-card:hover {
  box-shadow: 0 6px 16px rgba(32, 70, 53, 0.13), 0 2px 8px rgba(36,87,61,0.11);
  transform: translateY(-6px) scale(1.02);
}

/* ==== PARK-CARD & TOUR-CARD LAYOUT ==== */
.park-card, .tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  margin-bottom: 20px;
  border: 1.5px solid var(--accent);
  min-width: 220px;
  max-width: 350px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.park-card ul, .tour-card ul {
  margin: 7px 0 0 0;
  padding-left: 16px;
  font-size: 0.96rem;
}
.park-card li, .tour-card li {
  font-family: var(--font-body);
  color: var(--primary);
  margin-bottom: 6px;
}
.park-card .highlight, .tour-card .highlight {
  font-weight: 700;
  color: var(--secondary);
}

/* ==== TESTIMONIALS STYLING ==== */
.testimonials h2 {
  margin-bottom: 24px;
}
.testimonial-card {
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  border-left: 8px solid var(--secondary);
  color: var(--primary);
  font-family: var(--font-body);
  margin-bottom: 20px;
  min-width: 0;
}
.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--primary);
  font-size: 1.07rem;
}
.testimonial-content p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--dark);
  font-size: 1.07rem;
}
.testimonial-author {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--secondary);
}
.testimonial-stars {
  display: flex;
  flex-direction: row;
  gap: 3px;
  align-items: center;
}
.testimonial-stars img {
  height: 22px;
  width: 22px;
}

/* ==== CTA - Call To Action Buttons & Sections ==== */
.cta-final, .cta-parks, .cta-erholung, .cta-touren {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px 0 40px 0;
  background: var(--secondary);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  box-shadow: var(--shadow-soft);
}
.cta-final h2, .cta-parks h2, .cta-erholung h2, .cta-touren h2 {
  color: var(--white);
}

/* ==== MAP OVERVIEW ==== */
.map-overview {
  margin-top: 36px;
  background: var(--accent);
  padding: 22px 16px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  color: var(--primary);
  box-shadow: var(--shadow-card);
}
.map-overview h3 { margin-bottom: 8px; }

/* ==== BUTTONS ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.09rem;
  cursor: pointer;
  background: var(--primary);
  color: var(--white);
  transition: background 0.17s, transform 0.14s, box-shadow 0.14s;
  box-shadow: 0 2px 10px rgba(36,87,61,0.07);
  margin-top: 12px;
}
.btn.primary {
  background: var(--primary);
  color: var(--white);
}
.btn.primary:hover, .btn.primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(36,87,61,0.11);
}
.btn.secondary {
  background: var(--secondary);
  color: var(--primary);
}
.btn.secondary:hover, .btn.secondary:focus {
  background: var(--primary);
  color: var(--white);
}
.btn:active {
  transform: scale(0.98);
}

/* ==== LINKS - Inline and Footer Nav ==== */
a {
  color: var(--primary);
  transition: color 0.16s;
}
a:hover, a:focus {
  color: var(--secondary);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin: 0 0 20px 0;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--font-display);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.16s, background 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

/* ==== FOOTER ==== */
footer {
  background: var(--accent);
  padding: 40px 0 16px 0;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-top: 36px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin: 0 0 18px 0;
}
.footer-social img {
  height: 29px;
  width: 29px;
  background: var(--secondary);
  padding: 4px;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(36,87,61,0.10);
  transition: background 0.17s;
}
.footer-social img:hover {
  background: var(--primary);
}
.footer-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 17px;
}
.footer-contact {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1rem;
}
.footer-contact address {
  font-style: normal;
  font-family: var(--font-body);
  color: var(--dark);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 0;
}
.footer-contact a { color: var(--secondary); }
.footer-contact a:hover { color: var(--primary); text-decoration: underline; }

/* ==== KONTAKT DETAIL ==== */
.kontakt-detail ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1.07rem;
}
.kontakt-detail li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.kontakt-detail img {
  height: 22px;
  width: 22px;
  margin-right: 4px;
}
.kontakt-detail a { color: var(--primary); }
.kontakt-detail a:hover { color: var(--secondary); }

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 -2px 10px rgba(36,87,61,0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 30px 18px 22px 18px;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  font-size: 1.06rem;
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.3s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 6px;
}
.cookie-btn {
  border: none;
  border-radius: var(--radius-md);
  padding: 10px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: var(--secondary);
  color: var(--primary);
  margin-right: 3px;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background: var(--primary);
  color: var(--white);
}
.cookie-btn.accept:hover {
  background: #459e60;
}
.cookie-btn.reject {
  background: #e6e6e6;
  color: var(--primary);
}
.cookie-btn.reject:hover {
  background: #ffc4ac;
  color: var(--primary);
}
.cookie-btn.settings {
  background: var(--warning);
  color: var(--primary);
}
.cookie-btn.settings:hover {
  background: #f5d49b;
  color: var(--primary);
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left:0;
  width: 100vw; height: 100vh;
  background: rgba(35,37,39,0.31);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 32px rgba(36,87,61,0.16);
  width: 95%;
  max-width: 440px;
  padding: 36px 22px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modal-fade-in 0.42s cubic-bezier(.25,.99,.55,.94);
}
@keyframes modal-fade-in {
  from { transform: scale(0.85) translateY(40px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.38rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--accent);
  padding: 13px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 9px;
}
.cookie-modal-category label {
  font-weight: 500;
}
.cookie-modal-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--secondary);
  border-radius: 7px;
}
.cookie-modal-category .always-on {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 18px;
  background: none;
  border: none;
  font-size: 1.82rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 1;
}

.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 6px;
}

/* ==== THANK YOU PAGE ==== */
.thankyou {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 60px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  text-align: center;
}
.thankyou h1 { color: var(--secondary); margin-bottom: 14px; }
.thankyou p { color: var(--dark); font-size: 1.17rem; }

/* ==== MISC ==== */
.highlight {
  color: var(--secondary);
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: #F3FDEB;
  padding: 2.5px 6px;
  margin-left: 3px;
}
section:not(:last-child) {
  margin-bottom: 60px !important;
}
.card:not(:last-child),
.feature-card:not(:last-child),
.tour-card:not(:last-child),
.park-card:not(:last-child) {
  margin-bottom: 22px;
}

/* ==== RESPONSIVE STYLES ==== */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  .card, .feature-card, .tour-card, .park-card {
    min-width: 0;
    max-width: 100%;
    padding: 20px 10px;
  }
  .section, section {
    padding: 22px 5px;
  }
  .container {
    padding: 0 6px;
  }
  footer {
    padding: 30px 0 10px 0;
  }
  .footer-social img {
    height: 24px;
    width: 24px;
    padding: 2px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 12px 6px;
  }
  .hero, .hero-erholung, .hero-staedte, .hero-routen {
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
}

/* ==== SCROLLBAR STYLES (for kindness) ==== */
::-webkit-scrollbar {
  width: 9px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}

/* ==== TRANSITION & HOVER MICRO-INTERACTIONS ==== */
.card, .feature-card, .tour-card, .park-card, .btn, .footer-nav a, .mobile-menu-toggle, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.13s, color 0.15s, background 0.16s;
}

/* ==== VISUAL FOCUS STYLES ==== */
a:focus, button:focus, .btn:focus, .cookie-btn:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2.5px;
}

/* ==== Z-INDEX LAYERING ==== */
header, .mobile-menu, .cookie-consent-banner, .cookie-modal-backdrop { z-index: 1000; }

/* ==== FLEX GAPS ADJUSTMENT ==== */
.feature-grid > *, .stadt-list > *, .route-list > *, .park-list > * {
  margin-top: 0;
  margin-bottom: 0;
  /* rely on gap */
}

/***** END OF CSS FILE *****/
