:root {
  --brand: rgb(173, 37, 18);
  --brand-2: #14b8a6;

  --sand-25: #FBF6EF;
  --sand-50: #F7F0E6;
  --sand-100: #F1E6D6;
  --sand-200: #E6D6BD;
  --sand-300: #D8C3A0;

  :root {
  /* ...deine Variablen... */
  --mint-50: #EAF8F2;
  --mint-100: #DCF3EA;
}

  
  --ink-sand: #2A1F13;
  --ink-sand-muted: #5C4A36;
  --border-sand: #D8C3A0;

  --radius: 16px;
  --shadow: 0 8px 24px rgba(0,0,0,0.12);

  --inner: 800px;

  /* Header-Offset für fixed header */
  --header-offset: 1px;

  /* UI */
  --ink: #2A1F13;
  --accent: rgba(15, 118, 110, 0.52);
}

/* Grund-Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Grundlayout */
html,
body {
  margin: 0;
  height: 100%;
  background: linear-gradient(180deg, var(--sand-200), var(--sand-50) 60%);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
  color: var(--ink-sand);
  scroll-behavior: smooth;
}

/* Textbasis */
body {
  font-family: "Open Sans", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  padding-top: var(--header-offset);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Noto Sans", sans-serif;
}

/* Links */
a {
  color: var(--brand-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* zentrierter Seiten-Wrapper */
.wrap {
  max-width: var(--inner);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.btn{
  appearance: none;
  border: none;
  background: var(--brand-2);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 650;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: filter .15s ease, transform .15s ease;
  margin-bottom: 14px
}

.btn:hover{
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.btn.full{
  width: 100%;
  text-align: center;
}


/* ============================================================================================================
   HEADER & NAVIGATION (Final – konfliktfrei)
   ============================================================================================================ */

header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

header.header-solid{
  background-color: #fff;
  backdrop-filter: blur(0);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* Header-Layout */
header .wrap{
  max-width: 1100px;
}

.header-flex{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

/* Brand */
.brand{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.brand img{
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
}

.brand h1{
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  margin: 0;
  white-space: nowrap;
}

.brand h1 a{
  color: var(--ink-sand, #2A1F13);
  text-decoration: none;
  font-weight: 
}
/* Button + Menü (Anker) */
.nav-pop{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Burger */
.nav-toggle{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 10px;
}

.nav-toggle .bar{
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-sand, #2A1F13);
  border-radius: 2px;
}

.nav-toggle:focus-visible{
  outline: 2px solid var(--accent, rgba(15,118,110,0.52));
  outline-offset: 3px;
}

/* Menü: immer links vom Burger (alle Viewports) */
.nav-pop .menu{
  position: absolute;
  top: calc(100% + 8px);
  right: calc(100% + 10px); /* links neben dem Button */
  left: auto;

  display: none;
  flex-direction: column;
  gap: 10px;

  min-width: 220px;
  max-width: min(80vw, 320px);

  padding: 14px 16px;
  border-radius: 14px;

  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow, 0 8px 24px rgba(0,0,0,0.12));
  z-index: 999;
}

.nav-pop .menu.is-open{
  display: flex;
}

.nav-pop .menu a{
  color: var(--ink-sand, #2A1F13);
  text-decoration: none;
  padding: 6px 4px;
}

.nav-pop .menu a:hover{
  text-decoration: underline;
}

/* Overlay (optional, funktioniert jetzt für alle Größen) */
.menu-backdrop{
  display: none;
}

.menu-backdrop.is-open{
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(1px);
  z-index: 998;
}


/* ===============================================================================================================
   HERO-BEREICH & FORTSCHRITTS-KACHEL
   ============================================================================================================= */

.hero-bleed {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: url('verladehalle.webp') center/cover no-repeat, #0b1517;
  height: 100vh;
  border-bottom: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,0.35));
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 84vh;
  text-align: center;
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px);
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
  text-align: center;
  padding-top: 20vh
}
.hero-content h1 {
  font-size: clamp(3rem, 4.5vw, 3rem);
  line-height: 1,15;
}

.hero-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 10px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.hero-content p {
  max-width: 880px;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  text-align: center;
}

/* CTA im Hero */
.hero-btn {
  margin-top: 30px;
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 35px 95px;
  border-radius: 999px;
  font-weight: 650;
  box-shadow: var(--shadow);
  transition: filter .2s ease, transform .2s ease;
}

.hero-btn:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
}

/* ================================================= Kopf ===================== */

#kopf {
  background-color: #fef7e6;
  padding-top: 4rem;
  min-height: auto;
}

/* Nur die Überschrift in diesem Abschnitt */
#kopf h3 {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4;
}

/* Nur der Text in der info-card in diesem Abschnitt */
#kopf .info-card p {
  max-width: 60rem;
}

/* ========================================================================================================
   FORTSCHRITTS-KARTE & COUNTDOWN
   ======================================================================================================= */

.progress-card {
  background-color: var(--accent);
  backdrop-filter: blur(4px);
  border-radius: 18px;
  padding: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  color: var(--ink-sand);
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-header span {
  font-size: 0.9rem;
  color: black;
}

.progress-header h3 {
  margin: 4px 0 0;
  font-size: 1.6rem;
  color: black;
}


/* Fortschrittsbalken ====================================================================================== */

.progress-bar {
  width: 100%;
  height: 14px;
  background: var(--sand-50);
  border-radius: 999px;
  overflow: hidden;
  margin: 12px 0 20px;
}

#progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  transition: width 0.8s ease;
}

/* Countdown ==================================================================================================== */

.countdown {
  text-align: center;
  margin-top: 12px;
}

.countdown p {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: black;
}

.count-values {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.count-values div {
  text-align: center;
}

.count-values span {
  display: block;
  font-size: 1.8rem;
  color: black;
  font-weight: 700;
}

.count-values small {
  display: block;
  font-size: 0.8rem;
  color: black;
}

/* =========================================
   Layout-Grundbausteine main
   ========================================= */

main .section {
  padding: 28px 0;
}

.stack {
  display: grid;
  gap: 22px;
}

.card {
  background: linear-gradient(180deg, var(--sand-25), var(--sand-50));
  border: 1px solid var(--border-sand);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

/* =========================================
   Abschnitt „ziel“ – .ziel-section
   ========================================= */
.zaehlt-section,
.museum-section,
.wirkt-section,
.ziel-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-100);
  flex-direction: column;
  padding: clamp(60px, 8vh, 120px) 0;
  box-shadow: inherit;
}
.zaehlt-section h2,
.museum-section h2,
.wirkt-section h2,
.ziel-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--ink-sand);
}
.zaehlt-section .subtitle,
.museum-section .subtitle,
.wirkt-section .subtitle,
.ziel-section .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--ink-sand-muted);
  margin-bottom: 32px;
}
.zaehlt-section .wrap,
.museum-section .wrap,
.ziel-section .wrap,
.wirkt-section .wrap {
  text-align: center;
}
.zaehlt-section ul,
.museum-section ul,
.ziel-section ul,
.wirkt-section ul {
  display: inline-block;
  text-align: left;
  padding-left: 1.2rem;
  margin: 0.5rem 0 1.5rem;
}
.zaehlt-card, 
.museum-card,
.ziel-card,
.wirkt-card{
  max-width: 900px;
}

/* =========================================
   Abschnitt „Warum jetzt?“ – .info-section
   ========================================= */

.info-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-100);
  padding: clamp(60px, 8vh, 120px) 0;
}

.info-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--ink-sand);
}

.info-section .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--ink-sand-muted);
  margin-bottom: 32px;
}

/* Hauptkarte im Abschnitt =============================00000000000000000000000000000000000000000000000000000000000000000000000000= */
.info-card {
  background: var(--sand-25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(15px, 4vw, 15px);
  width: min(950px, 100%);
  max-width: 950px;
  margin: 0 auto;
  gap: 14px;
  text-align: center;
}

.info-card p {
  color: var(--ink-sand);
  line-height: 1.6;
  margin-bottom: 32px;
}

.info-card .danger {
  color: #c2410c;
  font-weight: 600;
}

/* Kleine Info-Kacheln unter dem Text =================================== */
.inner-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 28px;
}

.small-card {
  flex: 1 1 240px;
  background: var(--sand-100);
  border: 2px solid var(--border-sand);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.small-card .icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.small-card h4 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: var(--brand);
}

.small-card p {
  font-size: 0.95rem;
  color: var(--ink-sand-muted);
  margin: 0;
}

/* Infobox am unteren Rand der Karte ========================================================= */
.bottom-box {
  background: var(--mint-100);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 1rem;
  color: var(--ink-sand);
  line-height: 1.5;
  text-align: center;
}

/* ==================================================================================================
   Abschnitt „Mit Ihrer Spende retten wir die Halle“
   .impact-section
   ==================================================================================================== */

.impact-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-100);
  padding: clamp(60px, 8vh, 120px) 0;
}

.impact-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink-sand);
}

.impact-section .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--ink-sand-muted);
  margin-bottom: 36px;
}

/* Hauptkarte im Impact-Abschnitt */
.impact-card {
  background: var(--sand-25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 40px);
  max-width: 950px;
  margin: 0 auto;
}

/* Drei Kacheln nebeneinander */
.impact-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-bottom: 28px;
}

.impact-item {
  flex: 1 1 260px;
  background: var(--sand-100);
  border: 2px solid var(--sand-100);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.impact-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.impact-item h4 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: var(--brand);
}

.impact-item p {
  font-size: 0.95rem;
  color: var(--ink-sand-muted);
  line-height: 1.5;
}

/* Infobox unten in der Impact-Karte */
.impact-bottom {
  background: var(--mint-100);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 18px;
  font-size: 1rem;
  color: var(--ink-sand);
  text-align: center;
  line-height: 1.5;
}

.impact-bottom .highlight {
  color: var(--brand);
  font-weight: 600;
}


/* ===========================================================================================================================
   Abschnitt „Was diese Halle einzigartig macht“
   .unique-section
   ========================================================================================================================= */

.unique-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-100);
  padding: clamp(60px, 8vh, 120px) 0;
}

.unique-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink-sand);
}

.unique-section .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--ink-sand-muted);
  margin-bottom: 24px;
}

/* Der einleitende Absatz unter der Subtitle */
.unique-section p {
  max-width: 950px;
  margin: 0 auto 24px auto;
  text-align: center;
  line-height: 1.6;
  color: var(--ink-sand);
}

/* Hauptkarte im Unique-Abschnitt */
.unique-card {
  background: var(--sand-50);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 40px);
  max-width: 950px;
  margin: 0 auto;
}

/* Grid mit vier Unique-Kacheln */
.unique-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  justify-items: stretch;
  align-items: stretch;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .unique-inner {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

.unique-item {
  background: var(--sand-100);
  border: 2px solid var(--border-sand);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.unique-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.unique-item h4 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: var(--brand);
}

.unique-item p {
  font-size: 0.95rem;
  color: var(--ink-sand-muted);
  line-height: 1.5;
}

/* Unterer Infoblock in der Unique-Karte */
.unique-bottom {
  background: var(--mint-100);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 18px;
  font-size: 1rem;
  color: var(--ink-sand);
  text-align: center;
  line-height: 1.5;
}

.unique-bottom h4 {
  margin: 0 0 4px;
  color: var(--ink-sand);
  font-size: 1.2rem;
}

/* =========================================
   Abschnitt „Ihre Spende wird belohnt“
   .donation-section
   ========================================= */

.donation-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-100);
  padding: clamp(60px, 8vh, 120px) 0;
}

.donation-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink-sand);
}

.donation-section .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--ink-sand-muted);
  margin-bottom: 36px;
}

/* Hauptkarte für die Spendenstufen */
.donation-card {
  background: var(--sand-25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 40px);
  max-width: 800px;
  margin: 0 auto;
}

/* Container der drei Stufen */
.donation-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 4px;
}

/* Einzelne Spendenstufe */
.donation-item {
  flex: 1 1 260px;
  background: var(--sand-50);
  border: 2px solid rgb(173, 37, 18);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.donation-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.donation-item h4 {
  margin: 0 0 4px;
  font-size: 1.15rem;
  color: var(--brand);
}

/* Betrag („Ab 1 €“, „Ab 50 €“ ...) */
.donation-item .amount {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-sand);
}

/* kleine „Badges“ unter dem Betrag */
.bonus {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Farbliche Varianten der Badges */
.bonus.mint {
  background: var(--mint-100);
  color: var(--brand);
}

.bonus.sand {
  background: var(--sand-100);
  color: var(--ink-sand);
}

.bonus-list {
 padding: 15px 26px;
  line-height: 1.6;
  border: solid 1px;
  border-color: #b91c1c;
  text-align: left
}


.bonus.red {
  background: #fee2e2;
  color: #b91c1c;
}

/* Beschreibungstext in der Karte */
.donation-item .text {
  font-size: 0.95rem;
  color: var(--ink-sand-muted);
  line-height: 1.5;
}

/* Hervorgehobene Stufe („Beliebt“) */
.donation-item.highlight {
  border: 2px solid var(--brand);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.donation-item.highlight .bonus.red {
  background: #fecaca;
}

/* kleines Label oben links („Beliebt“) */
.donation-item .label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
}

/* Hinweis unter der Karte */
.donation-bottom {
  border-top: 1px solid var(--sand-100);
  padding-top: 14px;
  font-size: 0.95rem;
  color: var(--ink-sand-muted);
  text-align: center;
}

/* =========================================
   Abschnitt „Jetzt spenden“
   .donate-section
   ========================================= */

.donate-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: clamp(60px, 8vh, 120px) 0;
}

.donate-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink-sand);
}

.donate-section .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--ink-sand-muted);
  margin-bottom: 32px;
}

/* Fortschrittsanzeige (oben im Spendenbereich) */
.donate-progress {
  background: var(--sand-25);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  max-width: 680px;
  margin: 0 auto 32px auto;
}

.donate-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
}

.donate-top .small {
  font-size: 0.85rem;
  color: var(--ink-sand-muted);
  margin: 0;
}

.donate-top .amount {
  font-size: 1.6rem;
  margin: 0;
  color: var(--brand);
}

.goal .small {
  font-size: 0.85rem;
  color: var(--ink-sand-muted);
  margin: 0;
}

.goal h3 {
  font-size: 1.3rem;
  margin: 0;
  color: var(--ink-sand);
}

/* Fortschrittsbalken im Spendenbereich */
.donate-progress .progress-bar {
  width: 100%;
  height: 10px;
  background: var(--sand-100);
  border-radius: 999px;
  overflow: hidden;
}

.donate-progress .progress {
  height: 100%;
  width: 1%; /* Platzhalter, kann per JS gesetzt werden */
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

/* =========================================
   Zwei Spendenwege nebeneinander
   ========================================= */

.donate-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  margin-top: 24px;    
}

/* Basis-Karte für Online & Bank */
.donate-box {
  flex: 1 1 360px;
  background: var(--sand-50);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  padding: 24px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  justify-content: space-between;
}

/* Bank-Kachel leicht anders einfärben */
.donate-box.bank {
  background: var(--sand-25);
}

/* PayPal-Banner oben in der Online-Box */
.paypal-banner {
  display: block;
  max-width: 140px;
  height: auto;
  margin: 0 0 12px;
}

/* Formular-Elemente in der Online-Spendenbox */
.donate-box h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--ink-sand);
}

.donate-box label {
  display: block;
  font-size: 0.9rem;
  margin-top: 10px;
  color: var(--ink-sand);
}

.donate-box input[type="text"],
.donate-box input[type="email"],
.donate-box input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.15);
  margin-top: 4px;
  font-size: 0.95rem;
}

.donate-box input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.donate-box input[type="number"]::-webkit-outer-spin-button,
.donate-box input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Checkbox-Zeilen */
.check {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  margin: 10px 0 16px;
  gap: 8px;
}

.check input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* Kleine Hinweise unter Inputs */
.donate-box .hint {
  font-size: 0.8rem;
  color: var(--ink-sand-muted);
  margin: 2px 0 0;
}

/* Button in voller Breite im Formular */
.donate-box .btn.full {
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

/* =========================================
   QR / Banküberweisung
   ========================================= */

.qr-area {
  margin-top: 18px;
}

.qr-label {
  font-size: 0.9rem;
  color: var(--ink-sand-muted);
}

.qr-placeholder {
  background: rgba(0,0,0,.05);
  border-radius: 8px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.qr-placeholder img {
  display: block;
  width: 50%;
  max-width: 180px;
  height: auto;
}

/* =========================================
   Info-Kacheln unter den Spendenboxen
   ========================================= */

.donate-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.info-box {
  flex: 1 1 260px;
  background: var(--sand-50);
  border-radius: var(--radius);
  border: 1px solid var(--border-sand);
  padding: 16px 18px;
  font-size: 0.95rem;
  color: var(--ink-sand);
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}


/* =========================================
   Abschnitt „Ein Blick in die Zukunft“
   .future-section
   ========================================= */

.future-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-25);
  padding: clamp(60px, 8vh, 120px) 0;
}

.future-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink-sand);
}

.future-section .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--ink-sand-muted);
  margin-bottom: 32px;
}

/* Hauptkarte für den Zukunfts-Block */
.future-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 40px);
  max-width: 950px;
  margin: 0 auto;
}

/* Drei Kacheln im Inneren */
.future-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-bottom: 24px;
}

.future-item {
  flex: 1 1 260px;
  background: var(--sand-50);
  border: 1px solid var(--border-sand);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}

.future-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.future-item h4 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: var(--brand);
}

.future-item p {
  font-size: 0.95rem;
  color: var(--ink-sand-muted);
  line-height: 1.5;
}

/* Infobox unter den Kacheln */
.future-bottom {
  background: var(--sand-100);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 18px;
  font-size: 1rem;
  color: var(--ink-sand);
  text-align: center;
  line-height: 1.5;
}

.future-bottom .highlight {
  color: var(--brand);
  font-weight: 600;
}
/* =========================================
   Abschnitt „2026: Die Halle lebt wieder“
   .vision-section
   ========================================= */

.vision-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--sand-100), #ffffff);
  padding: clamp(60px, 8vh, 120px) 0;
}

.vision-section .wrap {
  text-align: center;
}

/* Icon-Kreis oben */
.vision-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.vision-icon span {
  font-size: 1.8rem;
}

/* Titel & Unterzeile */
.vision-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--ink-sand);
}

.vision-section .subtitle {
  font-size: 1.05rem;
  color: var(--ink-sand-muted);
  margin: 0 0 32px;
}

/* Bildkarte mit Visualisierung */
.vision-image-card {
  max-width: 950px;
  margin: 0 auto 24px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.vision-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Textkarte unter dem Bild */
.vision-main-card {
  max-width: 950px;
  margin: 0 auto 28px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  text-align: left;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-sand);
}

/* KPI-Reihe mit vier Kacheln */
.vision-kpi-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 950px;
  margin: 0 auto 24px;
}

.vision-kpi {
  flex: 1 1 200px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
  text-align: center;
}

.kpi-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.vision-kpi h4 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--brand);
}

.vision-kpi p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-sand-muted);
}

/* Abschluss-Highlight unten */
.vision-highlight {
  max-width: 950px;
  margin: 0 auto;
  margin-top: 10px;
  background: var(--mint-100);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
  font-size: 1rem;
  color: var(--ink-sand);
  border-left: 4px solid var(--brand);
}

.vision-highlight span {
  font-weight: 650;
  color: var(--brand);
}




  .vision-kpi-row {
    flex-direction: column;
  }

    
 /* =========================================
   FAQ – Fragen & Antworten
   .faq-section
   ========================================= */

.faq-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: clamp(60px, 8vh, 120px) 0;
}

.faq-section h2 {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink-sand);
}

.faq-section .subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--ink-sand-muted);
  margin-bottom: 32px;
}

/* Icon-Kreis oben */
.faq-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--sand-50);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.faq-icon span {
  font-size: 1.8rem;
}

/* Karte, die alle FAQ-Einträge enthält */
.faq-card {
  max-width: 950px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 28px);
}

/* Einzelner FAQ-Eintrag */
.faq-item {
  border-radius: 12px;
  background: var(--sand-25);
  margin: 0 0 10px;
  padding: 0;
  border: 1px solid var(--sand-100);
  overflow: hidden;
}

/* Abstand zwischen Items, letzter ohne extra Margin */
.faq-item:last-child {
  margin-bottom: 0;
}

/* Summary-Leiste (Frage) */
.faq-question {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 14px 18px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-sand);
}

/* Standard-Browser-Pfeil ausblenden */
.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Eigener Pfeil rechts */
.faq-question::after {
  content: "▾";
  font-size: 0.9rem;
  margin-left: 12px;
  transition: transform 0.2s ease;
}

/* Zustand: geöffnet */
.faq-item[open] .faq-question {
  color: var(--brand);
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

/* Antwort-Bereich */
.faq-answer {
  padding: 0 18px 14px 18px;
  font-size: 0.95rem;
  color: var(--ink-sand-muted);
  line-height: 1.5;
}

.faq-answer p {
  margin: 0;
}

/* Hinweis unter der FAQ-Karte */
.faq-hint {
  max-width: 950px;
  margin: 14px auto 0 auto;
  font-size: 0.9rem;
  color: var(--ink-sand-muted);
  text-align: center;
}

.faq-hint a {
  color: var(--brand-2);
  text-decoration: none;
}

.faq-hint a:hover {
  text-decoration: underline;
}


  .faq-answer {
    padding: 0 14px 12px 14px;
  }


/* =========================================
   Newsletter – „Rettung miterleben“
   .newsletter-section
   ========================================= */

.newsletter-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand-50);
  padding: clamp(60px, 8vh, 120px) 0;
  text-align: center;
}

.newsletter-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--ink-sand);
}

.newsletter-section .subtitle {
  font-size: 1.05rem;
  color: var(--ink-sand-muted);
  margin-bottom: 28px;
}

/* Icon-Kreis oben */
.newsletter-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.newsletter-icon span {
  font-size: 1.8rem;
}

/* Newsletter-Karte – nutzt Basis .donate-box + Extras */
.newsletter-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
}

.newsletter-card h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--ink-sand);
}

/* Intro-Text in der Karte */
.newsletter-intro {
  font-size: 0.95rem;
  color: var(--ink-sand-muted);
  margin: 0 0 16px;
  text-align: left;
}

/* Formular insgesamt */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

/* Einzelnes Feld (Label + Input) */
.newsletter-field {
  text-align: left;
}

.newsletter-field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--ink-sand);
}

.newsletter-field input[type="text"],
.newsletter-field input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.15);
  font-size: 0.95rem;
}

/* Honeypot-Feld ausblenden */
.newsletter-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* Einwilligungs-Checkbox */
.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-sand-muted);
  text-align: left;
  margin-top: 4px;
}

.newsletter-consent input[type="checkbox"] {
  margin-top: 3px;
}

/* Button unten im Formular */
.newsletter-submit {
  margin-top: 8px;
}

/* Hinweis unter dem Formular */
.newsletter-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--ink-sand-muted);
  text-align: left;
}

.newsletter-note a {
  color: var(--brand-2);
  text-decoration: none;
}

.newsletter-note a:hover {
  text-decoration: underline;
}


  .newsletter-card {
    padding: 20px;
  }

@media (min-width: 769px) {
  .newsletter-card {
    padding: 24px 26px;
  }
}

/* =========================================
   FOOTER-BEREICH
   ========================================= */

footer {
  background: var(--sand-25);
  padding: 40px 0 30px;
  margin-top: 40px;
  border-top: 1px solid var(--sand-100);
  font-size: 0.95rem;
  color: var(--ink-sand);
}

footer .wrap.section.cols {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}

footer p.small {
  margin: 4px 0;
  font-size: 0.85rem;
  color: var(--ink-sand-muted);
  text-align: center;
}

footer a {
  color: var(--brand-2);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* CTA-Button im Footer */
footer .btn {
  display: inline-block;
  padding: 10px 16px;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
}

/* =========================================
   AUSKLAPPBARE BEREICHE (Impressum/Datenschutz)
   ========================================= */

.legal-accordion {
  margin-top: 40px;
}

.legal-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-sand);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Impressum/Datenschutz Summary */
.legal-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 20px;
  list-style: none;
  position: relative;
}
.legal-item summary::marker,
.legal-item summary::-webkit-details-marker {
  display: none;
}
.legal-item summary::after {
  content: "＋";
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.legal-item[open] summary::after {
  content: "－";
}
.legal-content {
  padding: 0 18px 18px 18px;
  font-size: 0.9rem;
  color: var(--ink-sand-muted);
  line-height: 1.5;
}

.legal-content a {
  color: var(--brand-2);
  text-decoration: none;
text-align: center;
}

.legal-content a:hover {
  text-decoration: underline;
}


/* =========================================
   Kleines Easter-Egg – Hase
   ========================================= */

.floating-bunny {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 80px;
  height: auto;
  z-index: 1000;
  pointer-events: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease-in-out, transform 0.2s ease;
}

/* Bildwechsel beim Hover */
.floating-bunny:hover {
  content: url('hase_a.png');
  transform: translateY(-2px);
}

/* Tablet/kleine Screens – etwas kleiner & näher an den Rand */
@media (max-width: 1024px) {
  .floating-bunny {
    width: 60px;
    bottom: 12px;
    right: 12px;
  }
}

/* Sehr kleine Screens – ganz ausblenden */
@media (max-width: 480px) {
  .floating-bunny {
    display: none;
  }
}
.progress-card,
.progress-card * {
  text-shadow: none !important;
}



  /* Header kompakter */
  header {
    padding-block: 4px;
    background-color: #ffffff;
    backdrop-filter: none;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
  }

  .header-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 4px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand h1 {
    font-size: 1rem;
    line-height: 1.2;
    white-space: normal;
  }

  .nav-right {
    flex: 1 1 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }


  .cta .btn {
    padding: 6px 10px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* Hero näher heran */
  .hero-bleed {
    min-height: 80vh;
    background-position: center top;
  }

  .hero-overlay {
    padding-top: 90px;
  }

  .hero-content h2 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-btn {
    width: auto;
    text-align: center;
    font-size: 1rem;
    padding: 8px 16px;
  }

  /* Karten & Abstände etwas kompakter */
  .donation-card,
  .donate-progress,
  .donate-box,
  .info-box,
  .vision-main-card,
  .faq-card,
  .newsletter-card {
    margin-inline: -8px;
    border-radius: 16px;
  }

  .donation-inner,
  .donate-options,
  .donate-info,
  .vision-kpi-row {
    gap: 24px;
  }

  .info-section,
  .impact-section,
  .unique-section,
  .donation-section,
  .donate-section,
  .future-section,
  .vision-section,
  .faq-section,
  .newsletter-section {
    min-height: auto;
    padding: 40px 0;
  }
  .floating-bunny {
    width: 60px;
    bottom: 12px;
    right: 12px;
  }
/* Aktiven Werberbung -------------------------------------------------------------------------*/
.aktiv-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--sand-25), #ffffff);
  padding: clamp(60px, 8vh, 120px) 0;
}

.aktiv-section .wrap {
  text-align: center;
}

.aktiv-section ul {
  display: inline-block;
  text-align: center;
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
}

.aktiv-section li {
  margin: 0.3rem 0;
}

.donate-section .donate-options{
  gap: 24px;
  column-gap: 24px;
  row-gap: 24px;
}
/* ========================================footer Logos ============ */
.footer-logos{
  display: -webkit-flex;
  -moz-flex: ;
  -ms-flex: ;
  -o-flex: ;
  flex: ;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer-logos a{
  display: inline-flex;
  align-items: center;
}

.footer-logos img{
  height: 75px;      /* einheitliche Logo-Höhe */
  width: auto;
  display: inline-block;
  opacity: 0.95;
  transition: opacity .15s ease, transform .15s ease;
}

.footer-logos a:hover img{
  opacity: 1;
  transform: translateY(-1px);
}
