/* ====== CSS RESET & 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,
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;
  background: #F4F2EE;
  color: #245225;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  outline: none;
  cursor: pointer;
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: #F4F2EE;
  color: #245225;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #245225;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.35rem;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, li, span, strong {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
strong {
  font-weight: 600;
}

/* ====== CONTAINER ====== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ====== HEADER & NAVIGATION ====== */
header {
  background: linear-gradient(90deg, #3A7F39 0%, #B35009 100%);
  color: #fff;
  width: 100%;
  box-shadow: 0 3px 20px rgba(36,82,37,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  padding: 8px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #FFFFFF;
  opacity: 0.92;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E58634;
  opacity: 1;
}
.cta-btn {
  background: linear-gradient(90deg, #E58634 0%, #B35009 100%);
  color: #fff;
  padding: 10px 28px;
  border-radius: 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 5px 18px rgba(179,80,9,0.08);
  transition: background 0.22s, transform 0.1s, box-shadow 0.22s;
  border: none;
  margin-left: 22px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #B35009 0%, #E58634 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(229,134,52,0.14);
}

/* ====== MOBILE NAVIGATION ====== */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.2rem;
  color: #fff;
  margin-left: 24px;
  padding: 3px 12px;
  border-radius: 8px;
  line-height: 38px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 102;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(36, 82, 37, 0.13);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 85vw;
  max-width: 350px;
  background: #fff;
  box-shadow: -2px 0 32px rgba(36,82,37,0.18);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: transform 0.33s cubic-bezier(0.3, 1, 0.5, 1), opacity 0.24s;
  padding: 30px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  color: #245225;
  font-size: 2.0rem;
  align-self: flex-end;
  margin-bottom: 18px;
  border-radius: 7px;
  padding: 0 10px 0 0;
  transition: background 0.19s;
  border: none;
  cursor: pointer;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #E58634;
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #245225;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  padding: 12px 0;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  text-align: left;
  width: 100%;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F4F2EE;
  color: #E58634;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  .cta-btn {
    margin-left: 8px;
    padding: 10px 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ====== SECTIONS & LAYOUTS (FLEXBOX ONLY) ====== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 5px 32px rgba(36,82,37,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  position: relative;
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 250px;
  max-width: 350px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(36,82,37,0.09);
  transition: box-shadow 0.22s, transform 0.18s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 32px rgba(229,134,52,0.18), 0 5px 18px rgba(36,82,37,0.11);
  transform: translateY(-4px) scale(1.015);
  z-index: 1;
}
.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: 20px;
  box-shadow: 0 2px 14px rgba(36,82,37,0.11);
  margin-bottom: 20px;
  color: #245225;
  font-size: 1.06rem;
  min-height: 76px;
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px rgba(229,134,52,0.17);
}
.rating-summary {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  color: #245225;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID (STARTSEITE, ETC.) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 30px 0 0 0;
  width: 100%;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(36,82,37,0.06);
  padding: 20px 20px 18px 20px;
  min-width: 225px;
  max-width: 260px;
  flex: 1 1 225px;
  gap: 10px;
  transition: box-shadow 0.18s;
}
.feature-grid li img {
  height: 36px;
  width: 36px;
  margin-bottom: 6px;
}
.feature-grid li:hover {
  box-shadow: 0 6px 18px rgba(229,134,52,0.13);
}

.workshop-calendar ul, .faq ul, .services ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.team-photo-placeholder {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 140px;
  background: #F4F2EE;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(36,82,37,0.08);
  overflow: hidden;
}

/* ====== HERO SECTIONS ====== */
.hero {
  background: linear-gradient(90deg, #E58634 2%, #3A7F39 100%);
  color: #fff;
  min-height: 340px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 58px 0 44px 0;
  position: relative;
  box-shadow: 0 8px 40px rgba(36,82,37,0.07);
}
.hero .container {
  justify-content: center;
  align-items: flex-start;
}
.hero .content-wrapper {
  color: #fff;
  gap: 16px;
  align-items: flex-start;
}
.hero h1, .hero h2, .hero p {
  color: #fff;
}
.hero .cta-btn {
  margin-left: 0;
  margin-top: 20px;
  background: linear-gradient(90deg, #fff 1%, #E58634 87%);
  color: #245225;
}
.hero .cta-btn:hover {
  background: linear-gradient(90deg, #E58634 0%, #B35009 100%);
  color: #fff;
}

/* ====== ABOUT SECTION ====== */
.about, .legal, .contact, .confirmation {
  background: #fff;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: 0 3px 18px rgba(36,82,37,0.08);
  padding: 40px 20px;
}

/* ====== FAQ SECTION ====== */
.faq ul li {
  padding: 8px 0;
  border-bottom: 1px solid #F4F2EE;
}
.faq ul li:last-child{
  border-bottom: none;
}
.faq strong {
  color: #E58634;
  font-weight: 600;
}

/* ====== ADDRESS BLOCK ====== */
.address-block {
  margin-top: 16px;
  font-size: 0.98rem;
  color: #245225;
  font-family: 'Roboto', Arial, sans-serif;
  text-align: left;
}
.address-block a {
  color: #B35009;
  text-decoration: underline dotted;
}
.address-block span {
  color: #E6E1D5;
}
.address-block a:hover, .address-block a:focus {
  color: #E58634;
}

/* ====== FOOTER ====== */
footer {
  padding: 36px 0 24px 0;
  background: linear-gradient(90deg, #245225 0%, #B35009 100%);
  color: #fff;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #FFFFFF;
  font-size: 1rem;
  opacity: 0.9;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.2s;
  padding: 4px 10px;
  border-radius: 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E58634;
  background: rgba(255,255,255,0.1);
  outline: none;
}

/* ====== FORMS/INPUTS ====== */
input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #E6E1D5;
  padding: 10px 12px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 14px;
  background: #FAF9F4;
  transition: border 0.16s;
}
input:focus, textarea:focus {
  border-color: #E58634;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 6px;
  color: #245225;
}

/* ==== LINKS/TRANSITIONS ==== */
a, button, .cta-btn {
  transition: color 0.18s, background 0.18s, box-shadow 0.22s, border-color 0.16s;
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10001;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(36,82,37,0.15);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 30px 24px 24px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
  transition: opacity 0.23s, transform 0.23s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-info {
  font-size: 1.01rem;
  color: #245225;
  max-width: 430px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 0;
  align-items: center;
}
.cookie-banner .cookie-btn, .cookie-banner .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 16px;
  padding: 7px 26px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .cookie-btn.accept {
  background: linear-gradient(90deg, #3A7F39, #E58634);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #B35009;
  border: 1.5px solid #B35009;
}
.cookie-banner .cookie-settings-btn {
  background: #F4F2EE;
  color: #245225;
}
.cookie-banner .cookie-btn.accept:hover,
.cookie-banner .cookie-btn.accept:focus {
  background: linear-gradient(90deg, #B35009, #E58634);
}
.cookie-banner .cookie-btn.reject:hover,
.cookie-banner .cookie-btn.reject:focus {
  background: #fbe7d5;
  color: #B35009;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: #E58634;
  color: #fff;
}

/* ====== COOKIE MODAL ====== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36,82,37,0.13);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #fff;
  color: #245225;
  border-radius: 22px;
  box-shadow: 0 6px 38px rgba(36,82,37,0.14);
  padding: 38px 30px 34px 30px;
  min-width: 310px;
  max-width: 95vw;
  width: 420px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  z-index: 103;
  position: relative;
  animation: cookieModalFadeIn 0.33s cubic-bezier(0.29, 1, 0.51, 1) both;
}
@keyframes cookieModalFadeIn { 0%{ opacity:0; transform: scale(0.92);} 100%{ opacity:1; transform: scale(1);} }

.cookie-modal-dialog h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #245225;
  font-size: 1.26rem;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 19px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 0;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #E58634;
}
.cookie-category .essential {
  color: #B35009;
  font-style: italic;
  font-size: 0.98em;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #E58634;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.12s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #F4F2EE;
}


/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1100px) {
  .container {
    max-width: 970px;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  .section, .about, .legal, .contact, .confirmation {
    padding: 30px 10px;
  }
  .feature-grid {
    gap: 12px;
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 0;
    min-height: 60px;
    padding: 0 10px;
  }
  .section, .about, .legal, .contact, .confirmation {
    margin-bottom: 44px;
    padding: 24px 6px;
    border-radius: 14px;
  }
  .hero {
    padding: 32px 0 24px 0;
    min-height: 170px;
    margin-bottom: 38px;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
    font-size: 1rem;
  }
  .footer-nav {
    gap: 15px;
    flex-wrap: wrap;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 8px 18px 8px;
    font-size: 0.97rem;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }
  .cookie-banner .cookie-actions {
    gap: 11px;
    margin-top: 0;
  }
  .cookie-modal-dialog {
    max-width: 96vw;
    padding: 19px 7px 19px 11px;
    min-width: 0;
  }
  .team-photo-placeholder {
    width: 92px; height: 92px;
    min-width: 64px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .footer-nav {
    gap: 6px;
    font-size: 0.93rem;
  }
  .cookie-modal-dialog {
    font-size: 0.97rem;
    padding: 11px 2px 9px 9px;
  }
}

/* ====== UTILITIES, EFFECTS, & MICRO-INTERACTIONS ====== */
.shadow-light {
  box-shadow: 0 2.6px 10px rgba(36,82,37,0.07);
}
.rounded-lg {
  border-radius: 22px;
}
.mt-32 {
  margin-top: 32px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mt-16 {
  margin-top: 16px;
}
.mb-16 {
  margin-bottom: 16px;
}
.hidden {
  display: none !important;
}

/* Animations for entrance */
.fade-in {
  animation: fadeIn 0.66s ease;
}
@keyframes fadeIn {
  0% { opacity:0; transform:translateY(30px); }
  100% { opacity:1; transform:translateY(0); }
}

/* ====== ACCESSIBILITY ====== */
:focus {
  outline: 2px solid #E58634 !important;
  outline-offset: 2px;
}

/* ====== END OF CSS ====== */
