/* CSS RESET & BASE NORMALIZATION */
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, caption, tbody, tfoot, thead, tr, th, td, section, article, aside, main, nav, footer, header, figure, figcaption, hr {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #FAF8F6;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #275328;
  background-color: #F9F8F5;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #35723B;
  text-decoration: none;
  transition: color .2s;
}
a:focus {
  outline: 2px dashed #A8D0B7;
  outline-offset: 2px;
}
a:hover {
  color: #B76C09;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Josefin Sans', 'Open Sans', Arial, sans-serif;
  color: #275328;
  font-weight: 700;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: .01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  letter-spacing: .01em;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
  color: #35723B;
}

/* CONTAINER & MAIN LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

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

.text-section {
  background: #FFFFFFAA;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px 0 rgba(184,180,169,0.13);
  margin-bottom: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #FFFBEF;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 18px rgba(183, 201, 186, 0.12);
  transition: box-shadow .3s, transform .2s;
  padding: 28px 22px;
  min-width: 250px;
  flex: 1 1 250px;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(47,73,67,0.14);
  transform: translateY(-3px) scale(1.025);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #F4ECE1;
  color: #275328;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(87, 112, 119, 0.10);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 600px;
  font-size: 1.1rem;
}
.testimonial-card blockquote {
  font-family: 'Josefin Sans', 'Open Sans', Arial, sans-serif;
  font-size: 1.12em;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #386651;
}
.testimonial-card cite {
  font-size: 0.97em;
  color: #887645;
  letter-spacing: 0.03em;
  font-style: normal;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAF4F9;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(178, 124, 170, 0.09);
  padding: 22px 18px;
  margin-bottom: 20px;
}

ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}
ul {
  list-style: disc inside;
}
ul li {
  margin-bottom: 12px;
  font-size: 1em;
}

hr {
  border: none;
  border-bottom: 1px solid #EEE9E1;
  margin: 32px 0;
}

/* HEADER & NAVIGATION */
header {
  background: #FFF7F2;
  width: 100%;
  box-shadow: 0 2px 24px 0 rgba(196, 191, 183, 0.12);
  z-index: 90;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 28px;
}
.logo img {
  max-height: 54px;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Josefin Sans', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #35723B;
  border-radius: 8px;
  padding: 7px 15px;
  transition: background .19s, color .19s;
  letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E2E9DD;
  color: #B76C09;
}
.cta-btn {
  font-family: 'Josefin Sans', 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: #A3E09B;
  color: #256436;
  border: none;
  border-radius: 32px;
  padding: 11px 26px;
  margin-left: 12px;
  box-shadow: 0 2px 14px 0 rgba(45,130,102,0.09);
  transition: background .26s, color .26s, box-shadow .21s, transform .12s;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #6AD68D;
  color: #275328;
  box-shadow: 0 4px 28px 0 rgba(24,69,44,0.12);
  transform: translateY(-2px) scale(1.045);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  background: #A4793E;
  color: #FFF;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 16px;
  display: none;
  cursor: pointer;
  z-index: 120;
  position: absolute;
  right: 16px;
  top: 17px;
  transition: background .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E0B969;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(248, 240, 232, 0.98);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.44s cubic-bezier(.66,0,.38,1);
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px 32px;
  box-shadow: 2px 0 24px rgba(140, 110, 65, 0.07);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 30px;
  top: 24px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #B76C09;
  cursor: pointer;
  z-index: 1250;
  transition: color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #35723B;
}
.mobile-nav {
  margin-top: 62px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.mobile-nav a {
  padding: 13px 8px 13px 0;
  font-family: 'Josefin Sans', 'Open Sans', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #35723B;
  border-radius: 8px;
  width: 100%;
  display: block;
  transition: background .14s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E2E9DD;
  color: #A4793E;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 13px;
  }
  .cta-btn {
    margin-left: 6px;
    padding: 10px 15px;
  }
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
}

@media (max-width: 820px) {
  header .container {
    gap: 8px;
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 6px;
  }
}

/* HERO & SECTION STYLES */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  width: 100%;
  background: transparent;
}
section > .container {
  width: 100%;
}

@media (max-width: 600px) {
  section {
    padding: 28px 0 28px 0;
    margin-bottom: 35px;
  }
}


/* FEATURES/LEISTUNGEN OVERVIEW (index, about, leistungen) */
section ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
section ul li {
  background: #F4ECE1;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(187, 163, 137, .09);
  padding: 20px 16px;
  flex: 1 1 220px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .22s, transform .15s;
}
section ul li img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  opacity: 0.92;
}
section ul li:hover {
  box-shadow: 0 6px 30px rgba(183,108,9,0.15);
  transform: translateY(-3px) scale(1.04);
}

@media (max-width: 820px) {
  section ul {
    gap: 12px;
  }
  section ul li {
    padding: 17px 10px;
    min-width: 160px;
    font-size: 0.98em;
  }
  .testimonial-card {
    font-size: .98rem;
    padding: 15px 11px;
  }
}

@media (max-width: 768px) {
  .content-wrapper, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  section ul {
    flex-direction: column;
    gap: 14px;
  }
  section ul li {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
}

/* ADDRESS BLOCKS & CONTACT INFO */
.address-block, .opening-hours, .email-display, .form-hint {
  margin-bottom: 13px;
  font-size: 1em;
  color: #35723B;
}
.form-hint p {
  font-size: 0.98em;
  margin-bottom: 0;
  color: #7B6B53;
}

/* FOOTER */
footer {
  background: #EAE7DF;
  padding: 36px 0 18px 0;
  width: 100%;
  min-height: 50px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #655C33;
  font-size: .97em;
  border-radius: 6px;
  padding: 5px 10px;
  transition: color .1s, background .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F4EEDB;
  color: #35723B;
}
footer span {
  font-size: 0.95em;
  color: #A79C7A;
  line-height: 1.5;
}

/* BUTTONS & INTERACTIVE */
button, .cta-btn {
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}
button:focus,
.cta-btn:focus {
  outline: 2px solid #B9EBC4;
  outline-offset: 2px;
}

/* FORM CONTROLS */
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1em;
  border-radius: 10px;
  border: 1px solid #D2D2C8;
  padding: 10px 13px;
  transition: border .14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #B9EBC4;
  outline: none;
}

/* SPECIAL - COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFEFCF;
  color: #33381D;
  box-shadow: 0 -2px 20px 0 rgba(184, 152, 46, 0.12);
  padding: 22px 20px;
  z-index: 3000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: 1em;
  animation: fadeInBtt 0.7s cubic-bezier(.42,.07,.78,.98);
}
@keyframes fadeInBtt {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-btn {
  background: #A3E09B;
  color: #2A563A;
  border: none;
  border-radius: 26px;
  margin: 0 8px;
  padding: 9px 22px;
  font-family: 'Josefin Sans', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1em;
  transition: background .18s, color .18s, box-shadow .15s;
  box-shadow: 0 2px 8px 0 rgba(72,125,90,0.08);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #6AD68D;
  color: #164B24;
}
.cookie-banner .cookie-settings {
  background: #FFF6E5;
  color: #88531A;
  border-radius: 22px;
  padding: 9px 18px;
  font-weight: 500;
  margin-left: 5px;
  transition: background .13s, color .13s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #FEF0C7;
  color: #B76C09;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4000;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(212,197,158,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 36px 30px 28px 30px;
  box-shadow: 0 6px 38px 0 rgba(151,139,111,0.19);
  min-width: 295px;
  max-width: 94vw;
  font-size: 1.08em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeInBtt .34s cubic-bezier(.52,.14,.64,1.09);
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.3em;
  margin-bottom: 16px;
  font-family: 'Josefin Sans', 'Open Sans', Arial, sans-serif;
  color: #275328;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-modal .category-label {
  font-weight: 600;
  color: #A4793E;
}
.cookie-modal .category-toggle {
  margin-left: auto;
  accent-color: #A3E09B;
}
.cookie-modal .modal-btn-row {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  justify-content: flex-end;
  width: 100%;
}
.cookie-modal .close {
  position: absolute;
  top: 12px;
  right: 17px;
  font-size: 1.8rem;
  color: #B76C09;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  color: #35723B;
}

/* Animations for modal slide */
@keyframes slideDownCookie {
  from { transform: translateY(-52px) scale(.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal {
  animation: slideDownCookie .34s cubic-bezier(.44,0,.66,1.1);
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 600px) {
  footer {
    padding: 24px 0 11px 0;
  }
  .footer-nav {
    gap: 12px;
    font-size: .92em;
  }
  .testimonial-card {
    font-size: 0.97em;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 15px 7px;
    font-size: .97em;
  }
  .cookie-modal {
    padding: 15px 6vw 10px 6vw;
    font-size: .95em;
    min-width: 0;
  }
}

/* MICRO-ANIMATIONS FOR BUTTONS */
button, .cookie-btn, .cta-btn {
  transition: box-shadow .17s, background .15s, color .14s, transform .11s;
}
button:active, .cta-btn:active {
  transform: scale(0.98);
}

/* SCROLLBAR STYLING (optional soft pastel) */
::-webkit-scrollbar {
  width: 9px;
  background: #F7F2E3;
}
::-webkit-scrollbar-thumb {
  background: #E0E8C7;
  border-radius: 12px;
}

/* ADDITIONAL ACCESSIBILITY IMPROVEMENTS */
:focus-visible {
  outline: 2px solid #A8D0B7;
  outline-offset: 2px;
}

/* END - FabelBlüte "soft_pastel" CSS */
