/* =======================================
   CSS RESET & NORMALIZATION (Mobile-first)
========================================== */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}
:focus {
  outline: none;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  background: #F6F4F0; /* Brand accent as background */
  color: #2C3547; /* Brand primary for text */
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* =============================
      NATURE_ORGANIC THEME
   ============================= */
:root {
  --primary: #2C3547;
  --secondary: #E6D3A3;
  --accent: #F6F4F0;
  --earth-olive: #62735B;
  --earth-brown: #917754;
  --earth-green: #519872;
  --earth-sand: #ece7db;
  --earth-deepgreen: #386641;
  --success: #85A079;
  --danger: #AC5B4E;
  --shadow-soft: 0 4px 18px 0 rgba(44,53,71,0.09);
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}
h1 {
  font-size: 2.3rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.22rem;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.75;
}
strong {
  font-weight: 700;
}

/* ======================================
   LAYOUT & SECTION SPACING PATTERNS
======================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--earth-sand);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(44,53,71,0.20);
  transform: translateY(-4px) scale(1.012);
}

.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;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(50, 65, 68, 0.11);
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
  color: var(--primary);
  flex-direction: column;
  position: relative;
  min-width: 220px;
  transition: box-shadow 0.3s, background 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(81,155,114,0.09);
  background: var(--accent);
}

.feature-item {
  background: var(--earth-sand);
  border-radius: 16px 40px 24px 12px/30px 18px 20px 36px;
  box-shadow: var(--shadow-soft);
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  min-width: 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--earth-deepgreen);
}
.feature-item:hover {
  box-shadow: 0 8px 36px 0 rgba(81,155,114,0.10);
  transform: translateY(-4px) scale(1.01);
}

/* Rezensions-Highlights/Themenlisten/Review-list */
.feature-grid, .review-list, .themenlisten-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.review-item, .themenlisten-item {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 24px 18px;
  flex: 1 1 224px;
  min-width: 220px;
  margin-bottom: 20px;
}
.review-filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
}
.review-filter li {
  background: var(--secondary);
  font-weight: 500;
  border-radius: 18px;
  padding: 8px 18px;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1rem;
}

/* ============= COMMON UI ============= */
.cta-button {
  display: inline-block;
  background: var(--earth-green);
  color: #fff;
  padding: 14px 34px;
  border-radius: 32px 20px 24px 36px/36px 18px 33px 25px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .04em;
  box-shadow: 0 2px 12px 0 rgba(44,53,71,0.12);
  margin-top: 18px;
  margin-bottom: 18px;
  transition: background 0.32s, box-shadow 0.18s;
  border: none;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: var(--earth-deepgreen);
  box-shadow: 0 6px 22px 0 rgba(44,53,71,0.15);
  color: #fff;
}

.price {
  background: var(--earth-olive);
  color: #fff;
  padding: 2px 12px;
  border-radius: 16px 24px 24px 16px/12px 20px 20px 14px;
  font-size: 0.98em;
  vertical-align: middle;
  margin-left: 10px;
}
strong {
  color: var(--earth-brown);
}

.success-message {
  padding: 36px 26px;
  background: var(--accent);
  border-radius: 24px 44px 28px 18px/28px 38px 27px 32px;
  text-align: center;
  box-shadow: 0 2px 18px 0 rgba(44,53,71,0.11);
}

.trust-signals p {
  background: #e9efea;
  color: var(--primary);
  border-radius: 16px 32px 18px 28px / 25px 29px 21px 16px;
  padding: 12px 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}

ul li {
  margin-bottom: 10px;
  padding-left: 0px;
}

.text-section {
  margin-bottom: 24px;
}
.cta-block {
  margin-top: 12px;
  padding: 18px 20px;
  background: var(--earth-sand);
  border-radius: 19px 22px 22px 19px/26px 14px 18px 25px;
  font-size: 1rem;
}

.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-details li span {
  font-weight: 700;
  color: var(--earth-brown);
  margin-right: 7px;
}

.map-embed {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  background: var(--accent);
  padding: 12px 14px;
  border-radius: 14px 16px 20px 18px / 24px 14px 19px 16px;
  font-size: 1rem;
  color: var(--primary);
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 18px 0 10px 0;
}
.social-links a {
  display: flex;
  width: 38px;
  height: 38px;
  background: var(--earth-green);
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.22s;
}
.social-links a:hover {
  background: var(--earth-deepgreen);
}
.social-links img {
  width: 22px;
  height: 22px;
}

/* =====================================
   HEADER & NAVIGATION (Desktop & Mobile)
======================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(60,67,47,0.08);
  position: relative;
  z-index: 25;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: flex-start;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 16px;
}
.main-nav a {
  color: var(--earth-olive);
  font-size: 1rem;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 24px 20px 26px 22px/22px 13px 19px 20px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--earth-green);
  color: #fff;
}
.main-nav img {
  height: 46px;
  width: auto;
  margin-right: 18px;
  vertical-align: middle;
}
.mobile-menu-toggle {
  display: block;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 40;
  background: var(--earth-olive);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  transition: background 0.23s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--earth-green);
}

/* Hide mobile menu & toggle (desktop default) */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,53,71, 0.86);
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.9,.95,.4,1.31) 0s;
  z-index: 80;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 2.2rem;
  background: var(--danger);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 16px 24px 22px 16px / 16px 22px 22px 22px;
  z-index: 120;
  transition: background .22s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--earth-brown);
}
.mobile-nav {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Merriweather', serif;
  color: #fff;
  font-size: 1.22rem;
  letter-spacing: .02em;
  padding: 12px 28px;
  border-radius: 22px 26px 18px 22px/18px 22px 16px 26px;
  transition: background .19s, color .19s;
  width: fit-content;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--earth-green);
  color: #fff;
}

/* Hide mobile-menu-toggle and mobile-menu by default on desktop */
@media (min-width: 900px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
  .main-nav {
    justify-content: flex-start;
  }
}
@media (max-width: 899px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}

/* =====================
      BREADTH & CARDS
====================== */
.feature-grid, .review-list, .themenlisten-grid {
  flex-direction: column;
}
@media (min-width: 680px) {
  .feature-grid, .review-list, .themenlisten-grid {
    flex-direction: row;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* =====================
     HERO / BANNERS
====================== */
section:first-of-type {
  background: linear-gradient(74deg, #ece7db 0%, #e7f3eb 100%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 2px 20px 0 rgba(80, 110, 82, 0.15);
}
section:first-of-type h1 {
  color: var(--earth-deepgreen);
}

/* ==================================
   FOOTER
================================== */
footer {
  width: 100%;
  background: var(--earth-olive);
  color: #fff;
  padding: 36px 0 14px 0;
  box-shadow: 0 -2px 12px 0 rgba(44,53,71,0.07);
  margin-top: 110px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 7px 20px;
  border-radius: 24px 16px 17px 18px/18px 14px 16px 17px;
  transition: background .18s, color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--earth-green);
  color: #fff;
}
.footer-info {
  text-align: center;
  margin-top: 12px;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-info p {
  color: #fff;
}

/* ===============================================
   TESTIMONIAL SLIDER (stacked for mobile)
=============================================== */
.testimonial-slider {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}
@media (min-width: 730px) {
  .testimonial-slider {
    flex-direction: row;
  }
}

/* =============== SUCCESS PAGE =============== */
.success-message h1 {
  color: var(--earth-deepgreen);
  margin-bottom: 10px;
}
.success-message p {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 22px;
}

/* ============= COOKIE CONSENT BANNER ============= */
.cookie-consent-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  background: #fffbe8;
  color: var(--primary);
  padding: 24px 20px 18px 20px;
  box-shadow: 0 -1px 16px 0 rgba(44,53,71,0.13);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  animation: cookieIn 0.7s cubic-bezier(0.53,0.68,0.24,1.08) 0s both;
}
@keyframes cookieIn {
  from { transform: translateY(80px); opacity: 0; } 
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  text-align: center;
}
.cookie-consent-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 32px 18px 28px 23px / 24px 18px 24px 20px;
  transition: background 0.18s, color 0.19s, box-shadow 0.18s;
  margin-top: 0;
  margin-bottom: 0;
  cursor: pointer;
}
.cookie-accept {
  background: var(--earth-green);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--earth-deepgreen);
}
.cookie-reject {
  background: var(--danger);
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #6b3630;
}
.cookie-settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--earth-sand);
  color: var(--primary);
}

/* ================ COOKIE PREFERENCES MODAL ================ */
.cookie-modal-overlay {
  position: fixed;
  z-index: 210;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(44,53,71, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-Modal 0.34s;
}
@keyframes fadein-Modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(44,53,71,0.19);
  border-radius: 26px 38px 24px 19px/22px 29px 19px 25px;
  max-width: 380px;
  width: 92vw;
  padding: 34px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalUp 0.43s;
}
@keyframes modalUp {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--earth-green);
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 16px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
}
/* Toggle Switch Style */
.cookie-switch {
  width: 38px;
  height: 22px;
  border-radius: 22px;
  background: var(--earth-sand);
  position: relative;
  transition: background .18s;
  display: inline-block;
}
.cookie-switch input {
  width: 0; height: 0; opacity: 0;
}
.cookie-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px;
  height: 18px;
  background: var(--earth-green);
  border-radius: 50%;
  transition: transform .17s cubic-bezier(.26,.78,.38,1.20), background .17s;
}
.cookie-switch input:checked + .cookie-slider {
  transform: translateX(16px);
  background: var(--primary);
}
.cookie-switch[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 14px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  padding: 9px 26px;
}
 /* ============= RESPONSIVENESS / FLEX LAYOUTS ============= */
@media (max-width: 1180px) {
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  .section { padding: 32px 4vw; }
}
@media (max-width: 720px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.1rem; }
  .testimonial-slider, .feature-grid, .review-list, .themenlisten-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card, .review-item, .themenlisten-item, .feature-item {
    min-width: 80vw;
    margin-right: 0;
  }
  .footer-nav, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .map-embed, .social-links {
    flex-direction: row;
  }
}
@media (max-width: 500px) {
  .section { padding: 18px 3vw; }
  .footer-info p { font-size: .93rem; }
}
/* Text-image flex: stack vertically on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* Prevent overlap: always gap styles for cards/sections */
.section > .container > .content-wrapper > * + * {
  margin-top: 20px;
}

/* Misc A11Y + INTERACTIONS */
a:focus-visible, .cta-button:focus-visible, .footer-nav a:focus-visible, .main-nav a:focus-visible {
  outline: 2px solid var(--earth-green);
  outline-offset: 2px;
}

/* ========== END STYLES ========== */