/* ---- 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.6;
  background: #F7FAF3;
  font-family: 'Roboto', Arial, sans-serif;
  color: #24613A;
  min-height: 100vh;
}
a {
  color: #E09B3D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #cf8100;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 14px;
}
img {
  max-width: 100%;
  display: inline-block;
}
button {
  font-family: inherit;
}

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700&family=Roboto:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #24613A;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.325rem; margin-bottom: 12px; }
h4 { font-size: 1.12rem; margin-bottom: 10px; }
p { font-size: 1rem; margin-bottom: 12px; line-height: 1.7; }
strong { color: #1e512f; }
blockquote {
  font-style: italic;
  background: #fffde9;
  border-left: 6px solid #E09B3D;
  padding: 18px 24px;
  margin-bottom: 12px;
  border-radius: 15px;
  color: #1e512f;
  box-shadow: 0 6px 16px rgba(36, 97, 58, 0.10);
  position: relative;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.text-section {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  text-align: center;
}

/* ---- SPACING & SECTIONING (MANDATORY CLASSES) ---- */
.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;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(36,97,58,0.08);
  min-width: 0;
  transition: transform 0.18s cubic-bezier(.38,1.06,.37,.98), box-shadow 0.21s;
}
.testimonial-card:hover, .testimonial-card:focus {
  transform: translateY(-4px) scale(1.018) rotate(-1deg);
  box-shadow: 0 8px 24px rgba(224,155,61,0.15), 0 2px 8px rgba(36,97,58,0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
/* If feature-grid's children do not have .feature-item, style them anyway */
.feature-grid > div {
  background: #fff;
  border-radius: 20px;
  padding: 22px 24px 22px 24px;
  box-shadow: 0 3px 18px rgba(224,155,61,0.08), 0 1px 6px rgba(36,97,58,0.06);
  min-width: 220px;
  flex: 1 1 210px;
  transition: box-shadow 0.22s, transform 0.16s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 30px rgba(224,155,61,0.16), 0 2px 12px rgba(36,97,58,0.12);
  transform: translateY(-6px) scale(1.03) rotate(1.5deg);
}

/* ---- HEADER & NAVIGATION ---- */
header {
  background: #24613A;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(36,97,58,0.10);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  position: relative;
}
.main-nav a {
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  padding: 6px 16px;
  border-radius: 14px;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  position: relative;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: #E09B3D;
  color: #fff;
}
.main-nav .cta-btn {
  background: #E09B3D;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  padding: 9px 28px;
  border-radius: 25px;
  margin-left: 10px;
  box-shadow: 0 2px 7px rgba(224,155,61,0.10);
  transition: background 0.15s, box-shadow 0.18s, color 0.13s;
  cursor: pointer;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: #cf8100;
  color: #fffbe0;
  box-shadow: 0 4px 14px rgba(224,155,61,0.21);
}

header img {
  vertical-align: middle;
  max-height: 36px;
  margin-right: 10px;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  appearance: none;
  background: #E09B3D;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 14px;
  padding: 6px 14px 5px 14px;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 10px;
  z-index: 202;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #cf8100;
  outline: 2px solid #fff5e3;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,97,58, 0.98);
  z-index: 220;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.43,1.08,.33,.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0); /* Slide in */
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: #E09B3D;
  border: none;
  padding: 6px 15px 5px 15px;
  border-radius: 16px;
  margin: 14px 0 8px 18px;
  cursor: pointer;
  transition: background 0.18s;
  align-self: flex-start;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #cf8100;
  outline: 2px solid #fffde8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
  margin-left: 30px;
  width: 80vw;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Merriweather', serif;
  padding: 14px 0;
  border-radius: 14px;
  transition: background 0.17s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E09B3D;
  color: #fffbe0;
}
.main-nav, .mobile-menu-toggle {
  transition: none;
}
/* --- Hide desktop nav on mobile, show burger --- */
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 430px) {
  .mobile-nav {
    margin-left: 12px;
  }
  .mobile-menu-close {
    margin-left: 7px;
  }
}

/* ---- HERO SECTION ---- */
section:first-of-type {
  background: linear-gradient(90deg, #E09B3D 0%, #F7FAF3 100%);
  min-height: 210px;
  display: flex;
  align-items: center;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 2px 44px rgba(224,155,61,0.06);
}
section:first-of-type h1 {
  color: #1e512f;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 0 #fff3ca, 0 4px 16px #E09B3D44;
}

/* ---- BUTTONS & CTA ---- */
.cta-btn {
  background: #E09B3D;
  color: #fff !important;
  font-family: 'Merriweather', serif;
  font-size: 1.16rem;
  padding: 12px 34px;
  border: none;
  border-radius: 28px;
  font-weight: bold;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 14px rgba(224,155,61,0.14);
  cursor: pointer;
  transition: all 0.19s cubic-bezier(.27,1.11,.39,.96);
  margin-top: 10px;
  margin-bottom: 10px;
  display: inline-block;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #cf8100;
  color: #fff8ee !important;
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
  box-shadow: 0 6px 22px rgba(224,155,61,0.21);
  outline: none;
}

/* ---- CARDS & CAROUSELS ---- */
.card {
  background: #fff;
  border-radius: 19px;
  padding: 22px 28px;
  box-shadow: 0 2px 17px rgba(36,97,58,0.11);
  flex: 1 1 260px;
  min-width: 230px;
  max-width: 430px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 34px rgba(224,155,61,0.17);
  transform: scale(1.03) rotate(-1.5deg);
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: #fff;
  color: #1e512f;
  border: 2px dashed #E09B3D;
  margin-bottom: 24px;
  min-width: 0;
  overflow-wrap: break-word;
}
.testimonial-card strong {
  color: #24613A;
  font-size: 1rem;
  margin-top: 10px;
  display: inline-block;
}
.star-rating-summary {
  margin-top: 18px;
  font-size: 1.11rem;
  color: #24613A;
  background: #fff7e1;
  border-radius: 16px;
  padding: 8px 18px;
  box-shadow: 0 2px 6px rgba(224,155,61,0.07);
  text-align: left;
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card img[alt*="Stern"], .star-rating-summary img {
  height: 1.15em;
  vertical-align: middle;
  margin-right: 2px;
}

/* -- SOCIAL ICONS -- */
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
}
.social-icons img {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fce5c4;
  padding: 4px;
  box-shadow: 0 1px 6px rgba(224,155,61,0.09);
  transition: background 0.18s, transform 0.14s;
  cursor: pointer;
}
.social-icons img:hover, .social-icons img:focus {
  background: #E09B3D;
  transform: scale(1.12) rotate(3deg);
}

/* ---- FOOTER ---- */
footer {
  background: #24613A;
  color: #fff;
  padding: 45px 0 0 0;
  position: relative;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  margin-top: 80px;
  box-shadow: 0 -4px 50px rgba(36,97,58,0.11);
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  flex-direction: row; 
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #fffbe4;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color 0.17s;
}
footer nav a:hover,
footer nav a:focus {
  color: #E09B3D;
}
.brand-tagline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  font-family: 'Merriweather', serif;
  font-weight: 700;
}
.brand-tagline img {
  width: 38px; height: 38px;
}
.contact-details {
  font-size: 0.99rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fffde6;
  margin-bottom: 10px;
}
.contact-details img {
  vertical-align: middle;
  width: 18px; height: 18px;
  margin-right: 5px;
  margin-bottom: 2px;
}
.legal-information {
  margin-top: 18px;
  text-align: center;
  color: #fbd28c;
  font-size: 0.95rem;
}

/* ---- PLAYFUL MICRO-INTERACTIONS ---- */
.cta-btn, .card, .feature-grid > div, .testimonial-card, .social-icons img {
  will-change: transform, box-shadow;
}
.card, .feature-grid > div {
  transition: box-shadow 0.18s, transform 0.14s;
}
.cta-btn {
  animation: playfulPop 0.8s cubic-bezier(.4,-0.06,.82,1.14);
}
@keyframes playfulPop {
  0% { transform: scale(0.95); }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.content-wrapper h2, .content-wrapper h1 {
  animation: bounceIn 0.9s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.97) translateY(30px); }
  60% { opacity: 1; transform: scale(1.06) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe0;
  color: #1e512f;
  box-shadow: 0 -2px 24px rgba(224,155,61,0.16);
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 5vw 18px 5vw;
  z-index: 9999;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  animation: cookieSlideUp 0.9s cubic-bezier(.68,-0.52,.53,1.46) 0.12s;
}
@keyframes cookieSlideUp {
  0% { transform: translateY(220px); opacity: 0; }
  70% { transform: translateY(-14px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center; 
  margin-left: 18px;
}
.cookie-banner button {
  padding: 8px 20px;
  border-radius: 22px;
  border: none;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  cursor: pointer;
  background: #E09B3D;
  color: #fff;
  margin: 0 4px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(224,155,61,0.13);
  transition: background 0.15s, color 0.13s;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #cf8100;
  color: #fffbea;
  outline: none;
}
.cookie-banner .cookie-settings-btn {
  background: #24613A;
  color: #fffbe0;
  margin-left: 8px;
  border: 2px solid #E09B3D;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(36,97,58,0.07);
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #fff8e1;
  color: #24613A;
  border-color: #cf8100;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top:0; right:0; bottom:0; left:0;
  background: rgba(36,97,58,0.66);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn .45s ease;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fffbe0;
  color: #1e512f;
  border-radius: 26px;
  min-width: 320px;
  max-width: 90vw;
  padding: 32px 27px 30px 27px;
  box-shadow: 0 4px 34px rgba(224,155,61,0.20);
  animation: popIn 0.6s cubic-bezier(.38,1.14,.32,1.09);
  position: relative;
}
@keyframes popIn {
  0% { transform: scale(0.93) translateY(80px); opacity: 0 }
  60% { transform: scale(1.04) translateY(-6px); opacity: 1 }
  100% { transform: scale(1) translateY(0); }
}
.cookie-modal h2 { font-size: 1.4rem; margin-bottom: 15px; }
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.05rem;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 21px;
  background: #E09B3D;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  margin-right: 6px;
  transition: background 0.14s;
  border: none;
}
.cookie-modal .cookie-toggle:checked {
  background: #24613A;
}
.cookie-modal .cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  width: 18px; height: 18px;
  left: 2px; top: 1.5px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(36,97,58,0.11);
  transition: transform 0.14s;
}
.cookie-modal .cookie-toggle:checked::before {
  transform: translateX(17px);
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-btns button {
  padding: 9px 22px;
  border-radius: 21px;
  font-size: 1.04rem;
  font-family: 'Merriweather', serif;
  cursor: pointer;
  border: none;
  background: #E09B3D;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 2px 7px rgba(224,155,61,0.13);
  transition: background 0.13s, color 0.11s;
}
.cookie-modal .cookie-modal-btns button:hover,
.cookie-modal .cookie-modal-btns button:focus {
  background: #cf8100;
  color: #fffbe0;
}
.cookie-modal .cookie-modal-btns .cookie-cancel {
  background: #fff8e1;
  border: 2px solid #E09B3D;
  color: #24613A;
  font-weight: 700;
}
.cookie-modal .cookie-modal-btns .cookie-cancel:hover {
  background: #E09B3D;
  color: #fff;
}
.cookie-modal .cookie-category[data-essential] .cookie-toggle {
  opacity: 0.5;
  pointer-events: none;
}

/* --- COMMON FORM STYLES (for Kontakt etc.) --- */
input[type="text"], input[type="email"], textarea {
  font-family: 'Roboto', Arial, sans-serif;
  padding: 12px 14px;
  border-radius: 13px;
  font-size: 1rem;
  border: 2px solid #E09B3D;
  margin-bottom: 14px;
  width: 100%;
  background: #fff;
  transition: border 0.16s;
}
input:focus, textarea:focus {
  border-color: #24613A;
  outline: none;
}
label {
  font-family: 'Merriweather', serif;
  font-size: 1.07rem;
  color: #24613A;
  margin-bottom: 4px;
  display: block;
}

/* ---- PLAYFUL DESIGN ACCENTS ---- */
hr {
  border: none;
  height: 3px;
  background: #E09B3D;
  border-radius: 2px;
  width: 50px;
  margin: 18px 0 18px 0;
}

/* -- TYPOGRAPHY HIERARCHY & SPACING -- */
h1, h2, h3, h4 {
  letter-spacing: -0.08em;
}
h1 {
  margin-top: 16px;
}
h2, h3 {
  margin-top: 14px;
}

/* ----- RESPONSIVE DESIGN ----- */
@media (max-width: 1020px) {
  .container {
    max-width: 99vw;
  }
  .content-wrapper {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 94%;
  }
  .container {
    padding-left: 8px; padding-right: 8px
  }
  .content-wrapper, .footer .content-wrapper {
    gap: 10px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .section {
    padding: 30px 10px;
    margin-bottom: 36px;
  }
  .feature-grid,
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  .brand-tagline {
    font-size: 0.98rem;
    gap: 8px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
  .section {
    padding: 17px 5px;
    margin-bottom: 28px;
  }
  .testimonial-card, .feature-grid>div, .card {
    padding-left: 9px;
    padding-right: 9px;
  }
}
@media (max-width: 430px) {
  .container { padding: 0 2px; }
  .brand-tagline img { width: 28px; height: 28px; }
}

/* --------- ACCESSIBILITY --------- */
a, button, .cta-btn {
  outline-offset: 2px;
}
:focus-visible {
  outline: 2px dashed #E09B3D;
  outline-offset: 2px;
}

/* --------- OVERRIDE UNWANTED PROPERTIES --------- */
/* Absolutely no grid/column properties allowed! */
[class*="grid"], [class*="column"] {
  /* Prevent grid fallback */
  display: flex !important;
  flex-wrap: wrap !important;
}

/* ---- MISC ---- */
::-webkit-input-placeholder {color: #8fad9d;}
::-moz-placeholder {color: #8fad9d;}
:-ms-input-placeholder {color: #8fad9d;}
::placeholder {color: #8fad9d;}


/* ---- PLAYFUL_EXTRAS: Fun Font For Headings (Optional) ---- */
@media (max-width: 960px) {
  .main-nav {
    display: none !important;
  }
}

/* Add festive color splashes for playful dynamic style */
.cta-btn, .feature-grid > div, .testimonial-card, .cookie-banner, .cookie-modal {
  border-top-left-radius: 21px !important;
  border-bottom-right-radius: 19px !important;
}

/* END CSS */
