/* ===== Reset & Base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  background: #FBF8F1;
  color: #2B2E1F;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ===== Shared ===== */
.kicker {
  color: #4B6B3A;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 6px;
}
.kicker-light { color: #C9D9BB; }
.heading {
  font-family: 'Caveat', cursive;
  font-size: 42px;
  color: #33472A;
  margin: 0 0 36px;
}
.heading-light { color: #FBF8F1; }
.subheading {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  color: #33472A;
  margin: 0 0 20px;
}
.section-inner { max-width: 1100px; margin: 0 auto; }
.text-link { color: #4B6B3A; font-weight: 700; text-decoration: none; }
.text-link-light { color: #FBF8F1; font-weight: 700; text-decoration: underline; }
.block-link { display: block; margin-bottom: 6px; }

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  text-align: center;
  transition: background 0.2s ease;
}
.btn-filled-orange { background: #D98C4A; color: #FFFFFF; }
.btn-filled-orange:hover { background: #c67638; }
.btn-filled-green { background: #4B6B3A; color: #FBF8F1; padding: 12px 24px; font-size: 15px; }
.btn-filled-green:hover { background: #33472A; }
.btn-outline-white { background: rgba(255,255,255,0.15); border: 2px solid #FFFFFF; color: #FFFFFF; padding: 12px 26px; }
.btn-outline-white:hover { background: rgba(255,255,255,0.3); }
.btn-outline-cream { background: rgba(255,255,255,0.12); border: 2px solid #FBF8F1; color: #FBF8F1; padding: 12px 26px; }
.btn-outline-cream:hover { background: rgba(255,255,255,0.25); }

.wave { position: relative; height: 110px; }
.wave svg { width: 100%; height: 100%; display: block; }
.wave-hero { margin-top: -110px; z-index: 3; }
.wave-below { margin-top: -110px; }
.wave-inside { position: absolute; left: 0; right: 0; bottom: -1px; height: 110px; }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.tile-grid-stacked { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
.tile {
  border-radius: 28px 28px 28px 6px;
  padding: 30px 26px;
  box-shadow: 0 10px 24px rgba(75,107,58,0.12);
}
.tile-wide { padding: 34px 32px; }
.tile-rotate-neg { transform: rotate(-1deg); }
.tile-rotate-pos { transform: rotate(1deg); }
.tile-orange { background: #FCEFE2; border-radius: 28px 28px 28px 6px; }
.tile-green { background: #EAF0E0; border-radius: 28px 6px 28px 28px; }
.tile-yellow { background: #FBF3DE; border-radius: 6px 28px 28px 28px; }
.tile h4 { margin: 0 0 12px; color: #33472A; font-size: 19px; }
.tile p { margin: 0; font-size: 15px; line-height: 1.75; }
.tile-heading {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: #33472A;
  margin: 0 0 12px;
}
.tile-wide p { margin: 0 0 20px; }
.bank-block { background: rgba(255,255,255,0.5); border-radius: 14px; padding: 16px 18px; margin: 0 0 16px; }
.bank-name { margin: 0 0 6px; font-weight: 700; color: #33472A; font-size: 15px; }
.bank-details { font-size: 14px; line-height: 1.7; margin: 0 0 6px; color: #4A2E1D; }
.bank-note { margin: 0; font-size: 13px; line-height: 1.5; color: #6B5A47; font-style: italic; }
.donate-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.paypal-block { display: flex; align-items: center; gap: 16px; flex: 1 1 240px; min-width: 0; }
.paypal-qr { width: 90px; height: 90px; border-radius: 10px; flex-shrink: 0; }
.paypal-note { margin: 0 0 4px; font-size: 13px; line-height: 1.6; color: #4A2E1D; min-width: 0; }
.paypal-link { font-size: 13px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FBF8F1;
  border-bottom: 3px solid #4B6B3A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
}
.logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #2B2E1F; }
.logo-img { width: 56px; height: 56px; object-fit: contain; }
.logo-text { font-family: 'Caveat', cursive; font-weight: 700; font-size: 28px; color: #33472A; }
.desktop-nav { display: flex; gap: 24px; align-items: center; }
.desktop-nav a { text-decoration: none; color: #2B2E1F; font-weight: 600; font-size: 15px; }
.burger-btn { display: none; background: none; border: none; font-size: 30px; color: #33472A; cursor: pointer; }

.mobile-nav {
  position: sticky;
  top: 76px;
  z-index: 99;
  background: #FBF8F1;
  border-bottom: 3px solid #4B6B3A;
  display: flex;
  flex-direction: column;
  padding: 16px 32px;
  gap: 14px;
}
.mobile-nav a { text-decoration: none; color: #2B2E1F; font-weight: 600; font-size: 17px; }
.mobile-nav[hidden] { display: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .burger-btn { display: block; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43,46,31,0.15) 0%, rgba(43,46,31,0.55) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 4;
  margin: auto;
  margin-left: 60px;
  max-width: 560px;
  color: #FFFFFF;
}
.hero-content h1 {
  font-family: 'Caveat', cursive;
  font-size: 64px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.05;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 28px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 600px) {
  .hero-content { margin-left: 24px; margin-right: 24px; max-width: none; }
  .hero-content h1 { font-size: 44px; }
  .hero-slide:nth-child(1) { background-position: 70% center; }
}

/* ===== Aktuelles ===== */
.aktuelles { padding: 60px 60px 70px; }
.news-card {
  background: #FCEFE2;
  border-radius: 28px 28px 28px 6px;
  padding: 30px 26px;
  box-shadow: 0 10px 24px rgba(75,107,58,0.12);
}
.news-date {
  color: #4B6B3A;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 8px;
}
.news-title {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: #33472A;
  margin: 0 0 12px;
}
.news-text { margin: 0; font-size: 15px; line-height: 1.75; }

/* ===== Ueber uns ===== */
.section { position: relative; }
.section-white { background: #FFFFFF; }
.ueber-uns { padding: 40px 60px 140px; }
.ueber-uns-row {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}
.ueber-uns-text { flex: 1; min-width: 300px; }
.ueber-uns-text p { font-size: 16px; line-height: 1.8; margin: 0 0 16px; }
.ueber-uns-text p:last-child { margin-bottom: 0; }
.ueber-uns-photo { flex: 1; min-width: 300px; height: 320px; border-radius: 20px; overflow: hidden; }
.ueber-uns-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Quote ===== */
.quote-section {
  padding: 90px 40px 110px;
  background: #4B6B3A;
  text-align: center;
  overflow: hidden;
}
.quote-circle { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.06); }
.quote-circle-1 { width: 220px; height: 220px; top: -80px; left: -60px; }
.quote-circle-2 { width: 160px; height: 160px; bottom: -60px; right: 40px; }
.quote-section blockquote {
  margin: 0 auto;
  max-width: 700px;
  font-family: 'Caveat', cursive;
  font-size: 34px;
  color: #FBF8F1;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.quote-author { color: #C9D9BB; margin-top: 18px; font-size: 15px; position: relative; z-index: 2; }

/* ===== Tagesablauf ===== */
.tagesablauf { padding: 90px 60px 140px; max-width: 1000px; margin: 0 auto; }
.intro-text { font-size: 16px; line-height: 1.8; margin: 0 0 40px; max-width: 720px; }

.timeline { display: flex; flex-direction: column; }
.timeline-item { display: flex; gap: 24px; }
.timeline-marker { display: flex; flex-direction: column; align-items: center; }
.timeline-dot { width: 16px; height: 16px; border-radius: 50%; background: #4B6B3A; flex-shrink: 0; }
.timeline-line { width: 3px; flex: 1; background: #C7D3B7; }
.timeline-content { padding-bottom: 36px; }
.timeline-item-last .timeline-content { padding-bottom: 0; }
.timeline-title { margin: 0 0 4px; font-weight: 700; color: #33472A; font-size: 16px; }
.timeline-text { margin: 0; font-size: 15px; line-height: 1.7; color: #3A422A; }

/* ===== Der Ort ===== */
.der-ort { padding: 90px 60px; }
.der-ort-row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.der-ort-text { flex: 1; min-width: 300px; }
.der-ort-text p { font-size: 16px; line-height: 1.8; margin: 0 0 16px; }
.der-ort-text p:last-child { margin-bottom: 0; }
.der-ort-photo { flex: 1; min-width: 300px; height: 320px; border-radius: 18px; overflow: hidden; }
.der-ort-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Mitmachen ===== */
.mitmachen { padding: 90px 60px 140px; max-width: 1100px; margin: 0 auto; }

/* ===== Bilder ===== */
.bilder { padding: 90px 60px; }
.galerie-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.galerie-item { flex: 0 1 260px; height: 200px; border-radius: 16px; overflow: hidden; }
.galerie-item img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Kontakt ===== */
.kontakt { padding: 90px 60px 140px; max-width: 1000px; margin: 0 auto; }
.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.kontakt-tile { background: #EEF2E4; padding: 32px; }
.kontakt-tile-a { border-radius: 28px 28px 28px 6px; }
.kontakt-tile-b { border-radius: 28px 6px 28px 28px; }
.kontakt-tile h4 { margin: 0 0 12px; color: #33472A; font-size: 18px; }
.kontakt-tile p { margin: 0 0 14px; font-size: 15px; line-height: 1.8; }

/* ===== Anmeldung ===== */
.anmeldung { padding: 40px 60px 110px; background: #4B6B3A; text-align: center; overflow: hidden; }
.anmeldung-inner { max-width: 720px; margin: 0 auto; }
.anmeldung-text { color: #E7EEDC; font-size: 16px; line-height: 1.8; margin: 0 0 32px; }
.anmeldung-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Legal pages (Impressum, Datenschutz) ===== */
.legal-page { padding: 60px 60px 120px; max-width: 820px; margin: 0 auto; }
.legal-content h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #33472A;
  margin: 40px 0 12px;
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content h4 { font-size: 16px; color: #33472A; margin: 20px 0 8px; }
.legal-content p { font-size: 15px; line-height: 1.8; margin: 0 0 14px; }
.legal-content ul { margin: 0 0 14px; padding-left: 22px; }
.legal-content li { font-size: 15px; line-height: 1.8; margin: 0 0 6px; }
.legal-content .placeholder { background: #FCEFE2; padding: 2px 6px; border-radius: 4px; }
.legal-note {
  background: #EAF0E0;
  border-radius: 14px;
  padding: 18px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: #33472A;
  margin: 0 0 36px;
}

/* ===== Footer ===== */
.site-footer { background: #33472A; color: #D8E2CB; padding: 56px 60px 32px; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 14px; max-width: 320px; }
.footer-logo { width: 60px; height: 60px; object-fit: contain; }
.footer-brand-text { margin: 0; font-family: 'Caveat', cursive; font-size: 22px; color: #FBF8F1; }
.footer-col h5 { margin: 0 0 12px; color: #FBF8F1; font-size: 15px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-col a { color: #D8E2CB; text-decoration: none; }
.footer-col p { margin: 0; font-size: 14px; line-height: 1.8; }
.footer-copyright { text-align: center; font-size: 13px; color: #8FA07D; margin: 40px 0 0; }

/* ===== Responsive tweaks ===== */
@media (max-width: 700px) {
  .aktuelles, .ueber-uns, .der-ort, .mitmachen, .bilder, .kontakt, .tagesablauf {
    padding-left: 24px;
    padding-right: 24px;
  }
  .anmeldung, .quote-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .site-header { padding: 10px 20px; }
  .heading { font-size: 34px; }
}
