/* CSS RESET & BASE STYLES */
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;
}
body {
  line-height: 1.5;
  background: #FAF7F3;
  color: #303520;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; border: none; display: block; }
ul, ol { padding-left: 24px; margin-bottom: 16px; }
strong { font-weight: 700; }

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, .branding {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
}
h1 { font-size: 2.4rem; margin-bottom: 12px; color: #353d1e; letter-spacing: .02em; }
h2 { font-size: 1.8rem; margin-bottom: 10px; color: #3e462c; letter-spacing: .015em; }
h3 { font-size: 1.25rem; margin-bottom: 10px; color: #4c553a; }
p, li, span, a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

/* CONTAINER AND LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.text-section { display: flex; flex-direction: column; gap: 16px; }

/* HERO SECTION */
.hero {
  width: 100%;
  min-height: 350px;
  background: #E8EDD8 url('../assets/hero-texture.png') repeat;
  border-radius: 0 0 80px 0/0 0 60px 0;
  box-shadow: 0 2px 20px rgba(100,110,90,0.05);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding: 40px 0 32px 0;
}
.hero h1 { color: #324225; font-size: 2.5rem; }
.hero p {
  color: #4a5830;
  font-size: 1.16rem;
  margin-bottom: 8px;
}

/* FEATURES SECTION */
.features {
  background: #F5F1E4 url('../assets/organic-bg.png') repeat;
  border-radius: 50px 0 50px 0/60px 0 40px 0;
  box-shadow: 0 2px 12px rgba(60,80,40,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features h2 {
  text-align: left;
  color: #3E462C;
  margin-bottom: 18px;
}
.features .content-wrapper {
  flex-direction: column;
  gap: 24px;
}
.feature-grid, .features .content-grid, .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.features ul {
  flex-direction: column;
  list-style: disc;
  gap: 16px;
  margin-left: 16px;
}
.feature {
  background: #fff;
  border-radius: 28px 60px 22px 28px;
  box-shadow: 0 3px 24px rgba(100,140,100,.09);
  padding: 32px 20px;
  max-width: 310px;
  min-width: 220px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s, transform 0.22s;
  margin-bottom: 20px;
}
.feature:hover {
  box-shadow: 0 6px 28px #c9d5b0;
  transform: translateY(-5px) scale(1.025);
}
.feature img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 12px;
}
.feature h3 { color: #324225; margin-bottom: 5px; }
.feature p { color: #626a44; font-size: 1rem; }

/* ABOUT PREVIEW & ABOUT */
.about-preview, .about {
  background: #FAF7F3;
  border-radius: 32px 80px 32px 18px/30px 28px 65px 50px;
  box-shadow: 0 1.5px 12px rgba(100,140,100,0.04);
  margin-bottom: 60px;
  padding: 45px 20px 35px 20px;
}
.about-preview h2, .about h2 {
  color: #2A3410;
}
.about-preview ul, .about ul {
  margin-top: 14px;
  gap: 12px;
}
.about-preview li, .about li {
  color: #495634;
  font-size: 1rem;
  margin-bottom: 7px;
}

/* SECTION: card container layouts */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 16px rgba(110,120,100,.07);
  border-radius: 29px 24px 37px 18px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 190px;
  display: flex;
  flex-direction: column;
}
.card-content { display: flex; flex-direction: column; justify-content: center; gap: 14px; padding: 20px; }

/* TESTIMONIALS */
.testimonials {
  background: #E3E8DD url('../assets/leaves-light.png') repeat;
  border-radius: 60px 14px 70px 36px/42px 28px 32px 46px;
  box-shadow: 0 1px 14px rgba(60,100,45,.041);
  margin-bottom: 60px;
  padding: 40px 20px 30px 20px;
}
.testimonials h2 {
  color: #344018;
  margin-bottom: 22px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #fffbe2;
  color: #222;
  border-radius: 32px 18px 32px 28px;
  box-shadow: 0 2px 16px rgba(160,180,100,.12);
  min-width: 260px;
  flex: 1 1 240px;
  font-size: 1.025rem;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.2s;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #63684a;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px #dde5c5;
  transform: translateY(-2px) scale(1.02);
}

/* SERVICE SECTION */
.services-detail, .workshop-offer, .vermittlung-overview {
  background: #FDFDF6;
  border-radius: 36px 58px 28px 34px/24px 52px 40px 18px;
  box-shadow: 0 1px 8px rgba(210,210,190,.06);
  margin-bottom: 60px;
  padding: 35px 20px 30px 20px;
}
.services-detail h2, .workshop-offer h2, .vermittlung-overview h2 { color: #314220; }
.services-detail .content-wrapper, .workshop-offer .content-wrapper, .vermittlung-overview .content-wrapper {
  flex-direction: column;
  gap: 26px;
}
.service {
  background: #E4EBDA;
  border-radius: 27px 30px 21px 18px;
  margin-bottom: 20px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 1.5px 9px rgba(110,120,100,.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.service h3 { color: #2C3B17; font-size: 1.18rem; }
.service-price {
  font-size: 1.06rem;
  font-weight: 700;
  color: #74833e;
  margin-top: 6px;
  background: #F7F7E6;
  padding: 3px 11px;
  border-radius: 10px;
  display: inline-block;
}

/* CONTACT INFO & DETAILS */
.contact-info, .contact-details {
  background: #FAF7F3;
  border-radius: 48px 18px 36px 68px/20px 44px 32px 38px;
  box-shadow: 0 2px 11px rgba(80,90,60,.04);
  margin-bottom: 60px;
  padding: 44px 20px 32px 20px;
}
.contact-info h2, .contact-details h2 {
  color: #334B19;
}
.contact-info ul, .contact-details ul {
  list-style: disc;
  margin-left: 18px;
  margin-top: 8px;
  gap: 10px;
  color: #555f38;
}
.contact-info a, .contact-details a {
  color: #386e2b;
  text-decoration: underline;
  transition: color 0.18s;
}
.contact-info a:hover, .contact-details a:hover {
  color: #728c37;
}

/* THANK YOU CTA */
.thank-you {
  background: #E3E8DD;
  border-radius: 46px 32px 46px 46px/24px 44px 36px 28px;
  box-shadow: 0 2px 9px rgba(140,150,110,0.04);
  margin-bottom: 60px;
  padding: 56px 20px 40px 20px;
  text-align: center;
}

/* POLICY & LEGAL */
.privacy-policy, .cookie-policy, .gdpr-compliance, .terms-of-use {
  background: #fff;
  border-radius: 25px 35px 25px 70px/18px 38px 16px 24px;
  box-shadow: 0 2px 8px rgba(70,90,40,0.04);
  margin-bottom: 60px;
  padding: 45px 20px 30px 20px;
}
.privacy-policy h1, .cookie-policy h1, .gdpr-compliance h1, .terms-of-use h1 {
  font-size: 2.1rem;
  color: #314220;
  margin-bottom: 12px;
}

/* FOOTER */
footer {
  background: #27362a;
  color: #f9faf1;
  box-shadow: 0 -2px 14px rgba(30,40,20,0.07);
  border-radius: 48px 0 0 0/100px 0 0 0;
  z-index: 3;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 32px 20px 16px 20px;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
footer nav a {
  color: #bfde92;
  font-weight: 500;
  font-size: 1rem;
  padding: 3px 0;
  transition: color 0.16s;
}
footer nav a:hover { color: #ffffff; }
footer .branding {
  display: flex;
  align-items: center;
  font-size: 1.13rem;
  gap: 10px;
  font-family: 'Oswald', Arial, sans-serif;
  color: #BCD788;
}
footer .branding img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
footer .copyright {
  font-size: 0.92rem;
  color: #dae0ce;
  margin-top: 16px;
}

/* BUTTONS & CTA */
.primary-cta {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1.08rem;
  font-family: 'Oswald', Arial, sans-serif;
  border-radius: 25px 40px 18px 35px;
  color: #fff;
  background: #7BA334;
  border: none;
  box-shadow: 0 2px 16px rgba(72,110,38,0.10);
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  text-align: center;
  transition: background 0.22s, box-shadow 0.21s, transform 0.16s;
}
.primary-cta:hover,
.primary-cta:focus {
  background: #9CC356;
  box-shadow: 0 4px 24px #dbe7b9;
  transform: translateY(-2px) scale(1.01);
  outline: none;
}
button, .mobile-menu-close, .mobile-menu-toggle {
  font-family: 'Oswald', Arial, sans-serif;
  background: none;
  border: none;
  color: #324225;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 1.6rem;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 28px;
  top: 30px;
  z-index: 201;
  background: #e4ebda;
  color: #324225;
  font-size: 2.1rem;
  box-shadow: 0 1.5px 8px rgba(110,120,100,.11);
}
.mobile-menu-toggle:hover {
  background: #cde0a4;
  color: #65952b;
}

/* HEADER NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 28px rgba(38,41,18,0.06);
  border-radius: 0 0 80px 0/0 0 45px 0;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 18px 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  color: #374A18;
  padding: 4px 7px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .01em;
  border-radius: 12px;
  transition: background 0.17s, color 0.16s;
  position: relative;
}
header nav a:hover,
header nav a.active {
  color: #9CC356;
  background: #E4EBDA;
}
header img {
  height: 44px;
  width: auto;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #e4ebda;
  box-shadow: 0 2px 45px rgba(60,90,30,0.22);
  z-index: 990;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.58,.12,.27,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 21px 24px 0 0;
  font-size: 2.3rem;
  background-color: #cde0a4;
  color: #4c553a;
  box-shadow: none;
  transition: background 0.17s, color 0.16s;
}
.mobile-menu-close:hover {
  color: #303520;
  background: #adc37c;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 45px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.33rem;
  color: #324225;
  font-weight: 500;
  padding: 6px 0;
  border-radius: 10px;
  transition: background 0.13s, color 0.14s;
}
.mobile-nav a:hover { background: #cde0a4; color: #fff; }

/* Hide desktop nav, show mobile on small */
@media (max-width: 980px) {
  header .container nav { display: none; }
  .primary-cta { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}

/* LAYOUTS */
.content-grid, .features .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;
}
.text-image-section.reverse { flex-direction: row-reverse; }

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPACING Rules */
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #dbe5c5;
  color: #273016;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 10000;
  box-shadow: 0 -2px 22px rgba(60,110,18,0.08);
  font-size: 1rem;
  gap: 18px;
  transition: transform 0.35s cubic-bezier(.46,1,.3,1);
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: 25px;
}
.cookie-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.01rem;
  padding: 9px 17px;
  border: none;
  border-radius: 13px 22px 9px 17px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.19s, color 0.17s;
}
.cookie-accept-btn {
  background: #91be4c;
  color: #fff;
}
.cookie-accept-btn:hover {
  background: #728c37;
  color: #fff !important;
}
.cookie-reject-btn {
  background: none;
  color: #334B19;
  border: 2px solid #728c37;
}
.cookie-reject-btn:hover {
  background: #edeada;
  color: #728c37;
}
.cookie-settings-btn {
  background: #cde0a4;
  color: #273016;
}
.cookie-settings-btn:hover {
  background: #f6faeb;
  color: #334B19;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(46,61,34,0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
.cookie-modal {
  background: #fffbe2;
  color: #273016;
  border-radius: 28px 30px 26px 21px;
  box-shadow: 0 2px 24px rgba(160,180,120,.11);
  width: 95%;
  max-width: 430px;
  padding: 36px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  z-index: 10100;
  transform: scale(1);
  transition: transform 0.16s;
}
.cookie-modal h2 {
  font-size: 1.36rem;
  margin-bottom: 12px;
  color: #314220;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #E3E8DD;
  padding: 8px 14px;
  border-radius: 14px;
  font-size: 1.01rem;
}
.cookie-category input[type='checkbox'] {
  width: 19px; height: 19px;
  accent-color: #7BA334;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-modal .cookie-actions {
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .cookie-save-btn {
  background: #7BA334;
  color: #fff;
}
.cookie-modal .cookie-save-btn:hover {
  background: #BACF82;
  color: #234c07;
}

/* Accessibility: Focus Outlines */
a:focus, button:focus, input:focus {
  outline: 2px solid #91be4c;
}

/* Responsive Design */
@media (max-width: 980px) {
  .container {
    max-width: 96vw;
    padding: 0 12px;
  }
  footer .container, header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 11px 10px 13px 11px;
  }
  .card-container, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .features .content-wrapper, .about-preview .content-wrapper, .about .content-wrapper, .services-detail .content-wrapper, .workshop-offer .content-wrapper, .vermittlung-overview .content-wrapper {
    gap: 16px;
  }
  .feature, .testimonial-card, .service, .card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
  }
  .hero .container {
    flex-direction: column;
    padding: 0 10px;
  }
  .hero {
    min-height: 210px;
    padding: 0;
  }
  .section { padding: 28px 7px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .footer .container {
    padding: 10px 7px 13px 7px;
  }
  .hero h1 { font-size: 2rem; }
  .features { padding: 29px 7px; }
  .about-preview, .about, .testimonials, .contact-info, .contact-details, .services-detail, .workshop-offer, .vermittlung-overview, .privacy-policy, .cookie-policy, .gdpr-compliance, .terms-of-use, .thank-you {
    padding: 26px 6px 18px 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width:540px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.02rem; }
  .hero h1 { font-size: 1.3rem; }
  .copyright { font-size: .86rem; }
  .testimonial-card, .feature, .service, .card {
    padding: 13px 7px;
    min-width: 0;
    width: 99%;
  }
}
/* Shadows for cards and organic divisions */
.card, .feature, .testimonial-card, .service {
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .service:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 6px 18px #c9d5b0;
}

/* Organic Shapes decorative (add classes if intended for extra decor) */
.organic-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.5px) opacity(.63);
  width: 200px; height: 120px;
  top: -60px; right: -44px;
  background: #daebaf;
  border-radius: 70% 40% 60% 30%/60% 40% 55% 45%;
  display: none;
}
@media (min-width: 1100px) { .organic-shape { display: block; } }

/* Microinteractions & Transitions */
a, button, .primary-cta, input[type="checkbox"] {
  transition: background 0.18s, color 0.18s, border 0.13s, box-shadow 0.19s, transform 0.14s;
}

/* Utility Classes */
.hide { display: none !important; }
.show { display: block !important; }

/* Custom Scrollbar for organic feel */
::-webkit-scrollbar { width: 10px; background: #E3E8DD; }
::-webkit-scrollbar-thumb { background: #b7c59a; border-radius: 50px; }
::-webkit-scrollbar-thumb:hover { background: #9CC356; }

/* END */
