/* ============================================================
   Digital Balance e.V. — WordPress Theme
   CSS Design System
   Logo-Farben: Grün #84C318 | Orange #F47920 | Violett #7B3FA0 | Pink #C9457A
   Fonts werden lokal eingebunden (DSGVO) — siehe assets/fonts/fonts.css
   ============================================================ */

/* ─── CSS Variablen ────────────────────────────────────────── */
:root {
  /* Primärfarben — aus Logo */
  --color-primary:        #84C318;   /* Grün — Hauptfarbe (Blatt im Logo) */
  --color-primary-dark:   #6BA010;
  --color-primary-light:  #EAF5C0;
  --color-primary-bg:     #F3FAE0;

  /* Sekundärfarbe — Orange (aus Logo, warm & einladend) */
  --color-secondary:      #F47920;
  --color-secondary-dark: #D45F05;
  --color-secondary-light:#FDE8D0;

  /* Akzent — Violett (aus Logo oben) */
  --color-violet:         #7B3FA0;
  --color-violet-light:   #EEE0F5;

  /* Akzent — Pink/Magenta (aus Logo Mitte) */
  --color-pink:           #C9457A;
  --color-pink-light:     #F9E0EC;

  /* Spenden-Farbe */
  --color-spenden:        #E53E3E;
  --color-spenden-hover:  #C53030;

  /* Neutral */
  --color-white:          #FFFFFF;
  --color-bg:             #F8FAFC;
  --color-bg-section:     #F0F7E6;   /* Heller Grün-Ton für Sektionen */
  --color-bg-alt:         #FEF6EE;   /* Heller Orange-Ton */
  --color-text:           #2D3748;
  --color-text-light:     #718096;
  --color-text-muted:     #A0AEC0;
  --color-border:         #E2E8F0;
  --color-border-light:   #F1F5F9;

  /* Typografie */
  --font-heading:   'Nunito', sans-serif;
  --font-body:      'Open Sans', sans-serif;

  /* Abstände */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  8rem;

  /* Radius */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --radius-full:  9999px;

  /* Schatten */
  --shadow-xs:    0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.14);
  --shadow-xl:    0 16px 60px rgba(0,0,0,0.18);

  /* Übergänge */
  --transition:   all 0.25s ease;
  --transition-slow: all 0.4s ease;

  /* Container */
  --container-max: 1200px;
  --container-pad: 1.5rem;
}

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Container ────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ─── Typografie ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; font-weight: 700; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 0.35em 1em;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-label.orange {
  color: var(--color-secondary-dark);
  background: var(--color-secondary-light);
}
.section-label.violet {
  color: var(--color-violet);
  background: var(--color-violet-light);
}
.section-label.pink {
  color: var(--color-pink);
  background: var(--color-pink-light);
}

/* ─── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(132,195,24,0.35);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  box-shadow: 0 6px 24px rgba(132,195,24,0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(244,121,32,0.35);
}
.btn-secondary:hover {
  background: var(--color-secondary-dark);
  box-shadow: 0 6px 24px rgba(244,121,32,0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--color-white);
}

.btn-spenden {
  background: var(--color-spenden);
  color: var(--color-white);
  font-size: 1rem;
  padding: 0.85rem 2rem;
  box-shadow: 0 4px 16px rgba(229,62,62,0.35);
}
.btn-spenden:hover {
  background: var(--color-spenden-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(229,62,62,0.45);
}

.btn-violet {
  background: var(--color-violet);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(123,63,160,0.3);
}
.btn-violet:hover {
  background: #652D8C;
  transform: translateY(-2px);
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

.btn-lg {
  font-size: 1.1rem;
  padding: 1rem 2.25rem;
}

/* ─── Section Layout ───────────────────────────────────────── */
.section {
  padding: var(--space-lg) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-md);
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

/* ─── HEADER / NAVIGATION ──────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.site-logo-text {
  line-height: 1.2;
}

.site-logo-text .name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-text);
}

.site-logo-text .ev {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

/* Hauptnavigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
  background: var(--color-primary-bg);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: '▾';
  margin-left: 0.25rem;
  font-size: 0.75rem;
  opacity: 0.6;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
  border: 1px solid var(--color-border-light);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
}

.dropdown-menu a:hover {
  background: var(--color-bg);
  color: var(--color-primary);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO SECTION ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #F3FAE0 0%, #FEF6EE 50%, #EEE0F5 100%);
  padding: var(--space-xl) 0 var(--space-lg);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(132,195,24,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,121,32,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { padding-right: var(--space-md); }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-secondary-dark);
  background: var(--color-secondary-light);
  padding: 0.4em 1em;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero-eyebrow::before { content: '✦'; font-size: 0.7rem; }

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  position: relative;
  color: var(--color-primary);
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  opacity: 0.3;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  max-width: 500px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-md);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-weight: 600;
}

.trust-item .icon {
  width: 28px;
  height: 28px;
  background: var(--color-primary-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  max-width: 520px;
  width: 100%;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
}

.hero-badge.badge-top {
  top: -20px;
  right: -20px;
  color: var(--color-violet);
}

.hero-badge.badge-bottom {
  bottom: 20px;
  left: -20px;
  color: var(--color-secondary-dark);
}

.hero-badge .badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.badge-top .badge-icon { background: var(--color-violet-light); }
.badge-bottom .badge-icon { background: var(--color-secondary-light); }

/* ─── VERANSTALTUNGEN SECTION ──────────────────────────────── */
.events-section {
  background: var(--color-bg);
  padding: var(--space-lg) 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.event-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.event-card-header {
  background: linear-gradient(135deg, var(--color-primary-bg), var(--color-bg-alt));
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.event-date-badge {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.5rem 0.875rem;
  text-align: center;
  min-width: 58px;
  flex-shrink: 0;
}

.event-date-badge .day {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.event-date-badge .month {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.event-card:nth-child(2) .event-date-badge { background: var(--color-secondary); }
.event-card:nth-child(3) .event-date-badge { background: var(--color-violet); }

.event-meta { flex: 1; }

.event-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.event-card:nth-child(2) .event-category { color: var(--color-secondary-dark); }
.event-card:nth-child(3) .event-category { color: var(--color-violet); }

.event-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.event-time {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.event-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-light);
}

.event-location {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* ─── SPENDEN BANNER ───────────────────────────────────────── */
.spenden-banner {
  background: linear-gradient(135deg, #C9457A 0%, #7B3FA0 100%);
  padding: var(--space-lg) 0;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.spenden-banner::before {
  content: '♥';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16rem;
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.spenden-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
  align-items: center;
  position: relative;
  z-index: 1;
}

.spenden-content h2 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.spenden-content p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 550px;
  margin-bottom: 1.5rem;
}

.spenden-iban-block {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.spenden-iban-block .iban-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.spenden-iban-block .iban-number {
  font-family: 'Courier New', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.spenden-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.spenden-buttons .btn {
  background: var(--color-white);
  color: var(--color-pink);
  font-weight: 700;
}
.spenden-buttons .btn:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
}

.spenden-qr-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  min-width: 160px;
}

.qr-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto 0.75rem;
  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.spenden-qr-wrap p {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ─── MISSION SECTION ──────────────────────────────────────── */
.mission-section {
  background: var(--color-white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.mission-card {
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.mission-card p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.mission-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.mission-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-pink);
}

.mission-list--highlight li::before {
  background: var(--color-primary);
}

.mission-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    padding: 2rem 1.5rem;
  }
}

/* ─── ANGEBOTE SECTION ─────────────────────────────────────── */
.angebote-section {
  background: var(--color-bg);
  padding: var(--space-lg) 0;
}

.angebote-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.angebot-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.angebot-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.angebot-img {
  height: 160px;
  position: relative;
}

.angebot-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.angebot-card:hover .angebot-img img {
  transform: scale(1.05);
}

.angebot-icon-wrap {
  position: absolute;
  bottom: -18px;
  left: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--color-white);
}

.angebot-card:nth-child(1) .angebot-icon-wrap { background: var(--color-primary-bg); }
.angebot-card:nth-child(2) .angebot-icon-wrap { background: var(--color-secondary-light); }
.angebot-card:nth-child(3) .angebot-icon-wrap { background: var(--color-violet-light); }
.angebot-card:nth-child(4) .angebot-icon-wrap { background: var(--color-pink-light); }

.angebot-body {
  padding: 2rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.angebot-body h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.angebot-body p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  flex: 1;
  margin-bottom: 1rem;
}

.angebot-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.angebot-card:nth-child(2) .angebot-link { color: var(--color-secondary-dark); }
.angebot-card:nth-child(3) .angebot-link { color: var(--color-violet); }
.angebot-card:nth-child(4) .angebot-link { color: var(--color-pink); }

.angebot-link:hover { gap: 0.6rem; }

/* ─── ÜBER UNS (Kurzversion) ───────────────────────────────── */
.ueber-uns-section {
  padding: var(--space-lg) 0;
  background: var(--color-white);
}

.ueber-uns-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.ueber-uns-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.ueber-uns-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.ueber-uns-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  opacity: 0.12;
}

.ueber-uns-content h2 { margin-bottom: 1rem; }

.ueber-uns-content p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.ueber-uns-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 600;
}

.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.feature-item:nth-child(2) .feature-dot { background: var(--color-secondary); }
.feature-item:nth-child(3) .feature-dot { background: var(--color-violet); }

/* ─── ZAHLEN & WIRKUNG ─────────────────────────────────────── */
.zahlen-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #6BA010 100%);
  padding: var(--space-lg) 0;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.zahlen-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.zahlen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.zahl-item {
  text-align: center;
  padding: 2rem 1rem;
}

.zahl-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.zahl-label {
  font-size: 0.9rem;
  opacity: 0.88;
  font-family: var(--font-heading);
  font-weight: 600;
}

.zahl-divider {
  width: 2px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
  margin: 2rem 0;
}

/* ─── PROJEKTE PREVIEW ─────────────────────────────────────── */
.projekte-section {
  background: var(--color-bg);
  padding: var(--space-lg) 0;
}

.projekte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.projekt-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.projekt-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.projekt-card-img {
  height: 200px;
  overflow: hidden;
}

.projekt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.projekt-card:hover .projekt-card-img img {
  transform: scale(1.05);
}

.projekt-placeholder-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.projekt-card:nth-child(1) .projekt-placeholder-img { background: var(--color-primary-bg); }
.projekt-card:nth-child(2) .projekt-placeholder-img { background: var(--color-secondary-light); }
.projekt-card:nth-child(3) .projekt-placeholder-img { background: var(--color-violet-light); }

.projekt-card-body {
  padding: 1.5rem;
}

.projekt-status {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25em 0.75em;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.status-laufend {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}

.status-abgeschlossen {
  background: var(--color-border-light);
  color: var(--color-text-muted);
}

.projekt-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.projekt-card-body p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.projekt-zeitraum {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-section {
  background: var(--color-white);
  padding: var(--space-lg) 0;
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 2rem auto 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--color-primary-bg) 0%, var(--color-bg-alt) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  position: relative;
}

.testimonial-quote-icon {
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.15rem;
  color: var(--color-text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-author-info .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author-info .role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* ─── PARTNER SECTION ──────────────────────────────────────── */
.partner-section {
  background: var(--color-bg);
  padding: var(--space-md) 0 var(--space-lg);
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.partner-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  min-width: 180px;
  max-width: 240px;
}

.partner-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.partner-item img {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(30%);
  transition: var(--transition);
}

.partner-item:hover img {
  filter: grayscale(0%);
}

/* ─── FOOTER CTA ───────────────────────────────────────────── */
.footer-cta {
  background: linear-gradient(135deg, var(--color-secondary-light) 0%, var(--color-primary-bg) 100%);
  padding: var(--space-lg) 0;
  text-align: center;
}

.footer-cta h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.footer-cta p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.footer-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.85);
  padding: var(--space-lg) 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-wrap img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
}

.footer-brand .logo-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-white);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  opacity: 0.75;
}

.footer-spenden-mini {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
}

.footer-spenden-mini .iban-small {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--color-white);
  opacity: 0.9;
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-primary);
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact p strong {
  color: rgba(255,255,255,0.85);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--color-primary); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover {
  color: var(--color-primary);
}

/* ─── PAGE HERO (Unterseiten) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--color-primary-bg) 0%, var(--color-bg-alt) 100%);
  padding: var(--space-lg) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(132,195,24,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 { margin-bottom: 1rem; }

.page-hero p {
  font-size: 1.15rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
}

.breadcrumb a { color: var(--color-primary); }
.breadcrumb-sep { opacity: 0.4; }

/* ─── SPRECHSTUNDEN PAGE ───────────────────────────────────── */
.sprechstunde-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.sprechstunde-schritte {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.tandem-section {
  background: var(--color-bg);
  padding: var(--space-lg) 0;
}

.tandem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.tandem-visual {
  background: linear-gradient(135deg, var(--color-primary-bg), var(--color-violet-light));
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  position: relative;
}

.tandem-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tandem-person {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.tandem-person.expert {
  background: var(--color-primary);
  color: white;
}

.tandem-person.parent {
  background: var(--color-violet);
  color: white;
}

.tandem-arrow {
  font-size: 2rem;
  color: var(--color-secondary);
}

/* FAQ */
.faq-section { padding: var(--space-lg) 0; }

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover { background: var(--color-bg); color: var(--color-primary); }
.faq-question.open { color: var(--color-primary); background: var(--color-primary-bg); }

.faq-chevron {
  font-size: 0.875rem;
  transition: transform 0.25s ease;
  opacity: 0.6;
  flex-shrink: 0;
}

.faq-question.open .faq-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.faq-answer {
  display: none;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-light);
  background: var(--color-primary-bg);
  border-top: 1px solid var(--color-primary-light);
}

.faq-answer.open { display: block; }

/* ─── TEAM PAGE ────────────────────────────────────────────── */
.team-section { padding: var(--space-lg) 0; }

.team-vorstand {
  margin-bottom: var(--space-lg);
}

.vorstand-header {
  text-align: center;
  margin-bottom: 2rem;
}

.vorstand-header h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

.vorstand-header h3::before,
.vorstand-header h3::after {
  content: '';
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: var(--color-border);
}

.vorstand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 auto;
  align-items: stretch;
}

.vorstand-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-primary-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.vorstand-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.vorstand-photo {
  overflow: hidden;
  height: 380px;
}

.vorstand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.vorstand-photo-placeholder {
  width: 100%;
  height: 380px;
  background: var(--color-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.vorstand-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vorstand-badge {
  display: inline-block;
  background: var(--color-primary-bg);
  color: var(--color-primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25em 0.75em;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.vorstand-badge--stellv {
  background: var(--color-secondary-light, #fde8d0);
  color: var(--color-secondary-dark);
}

.vorstand-badge--orga {
  background: var(--color-violet-light);
  color: var(--color-violet);
}

.vorstand-badge--leitung {
  background: var(--color-pink-light);
  color: var(--color-pink);
}

.vorstand-badge--verwaltung {
  background: var(--color-bg-section);
  color: var(--color-text);
}

.vorstand-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.vorstand-beruf {
  font-size: 0.8rem;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.vorstand-funktion {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.vorstand-email {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.vorstand-email a {
  color: var(--color-primary);
  text-decoration: none;
}

.vorstand-email a:hover {
  text-decoration: underline;
}

.vorstand-bio {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Team Grid */
.team-grid-section { padding: 0 0 var(--space-lg); }

.team-section-title {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.team-section-title::before,
.team-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1.5px solid var(--color-border-light);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--color-primary-light);
}

.team-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-card-body {
  padding: 1rem;
}

.team-card-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.team-card-body .funktion {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* ─── KARIN PAGE ───────────────────────────────────────────── */
.karin-hero {
  background: linear-gradient(135deg, #F3FAE0 0%, #EEE0F5 100%);
  padding: var(--space-xl) 0;
}

.karin-hero-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.karin-photo-wrap {
  position: relative;
}

.karin-photo-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.karin-photo-deco {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  opacity: 0.15;
}

.karin-info h1 { margin-bottom: 0.5rem; }

.karin-title {
  font-size: 1.15rem;
  color: var(--color-primary);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.karin-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-text);
  border-left: 4px solid var(--color-primary);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Qualifikationen */
.qualifikationen-section { padding: var(--space-lg) 0; background: var(--color-bg); }

.qual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.qual-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: var(--shadow-xs);
}

.qual-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.qual-text {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-text);
  line-height: 1.4;
}

/* Timeline */
.timeline-section { padding: var(--space-lg) 0; }

.timeline {
  max-width: 860px;
  margin: 2rem auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 230px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-violet));
}

.timeline-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 222px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 3px var(--color-primary-light);
  z-index: 1;
}

.timeline-date {
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--color-primary);
  padding-top: 0.25rem;
  padding-right: 1.5rem;
  white-space: nowrap;
}

.timeline-content {
  padding-top: 0;
  padding-left: 0.5rem;
}

.timeline-content h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ─── KONTAKT PAGE ─────────────────────────────────────────── */
.kontakt-section { padding: var(--space-lg) 0; }

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.kontakt-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.kontakt-form-wrap h2 { margin-bottom: 0.5rem; }
.kontakt-form-wrap > p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.form-group label span { color: var(--color-spenden); }

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}

.kontakt-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.kontakt-info-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.kontakt-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--color-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.kontakt-info-text h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.kontakt-info-text p, .kontakt-info-text a {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.kontakt-info-text a:hover { color: var(--color-primary); }

.maps-placeholder {
  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
}

.maps-placeholder:hover {
  background: var(--color-primary-bg);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.maps-placeholder .maps-icon { font-size: 2rem; }
.maps-placeholder .maps-hint { font-size: 0.75rem; opacity: 0.7; }

/* ─── ANGEBOTE PAGE ────────────────────────────────────────── */
.angebote-tabs { margin-bottom: var(--space-md); }

.tab-list {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--color-border);
  overflow-x: auto;
  padding-bottom: 0;
  scrollbar-width: none;
}

.tab-list::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.25rem;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}

.tab-btn:hover { color: var(--color-text); }
.tab-btn.active { color: var(--color-primary); border-bottom-color: var(--color-primary); }

.tab-content { display: none; padding: var(--space-md) 0; }
.tab-content.active { display: block; }

.angebot-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.angebot-detail--flip .angebot-detail-content { order: -1; }

.angebot-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.angebot-detail-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.angebot-detail-content h2 { margin-bottom: 1rem; }

.angebot-detail-content p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.angebot-bullets {
  list-style: none;
  margin: 1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.angebot-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  font-weight: 600;
}

.angebot-bullets li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ─── SPENDEN PAGE ─────────────────────────────────────────── */
.spenden-section { padding: var(--space-lg) 0; }

.spenden-hero {
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-violet) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  color: var(--color-white);
  margin-bottom: var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.spenden-hero::before {
  content: '♥';
  position: absolute;
  font-size: 20rem;
  opacity: 0.05;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
}

.spenden-hero h1 { color: white; font-size: 2.5rem; margin-bottom: 0.75rem; }
.spenden-hero p { opacity: 0.9; font-size: 1.1rem; max-width: 600px; margin: 0 auto 2rem; }

.spenden-iban-big {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: inline-block;
  margin-bottom: 2rem;
}

.spenden-iban-big .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.75;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.spenden-iban-big .iban {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.spenden-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: var(--space-lg);
}

.plattform-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-border-light);
  transition: var(--transition);
}

.plattform-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
  transform: translateY(-4px);
}

.plattform-card .plattform-icon { font-size: 3rem; margin-bottom: 1rem; }
.plattform-card h3 { margin-bottom: 0.5rem; }
.plattform-card p { color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 1.5rem; }

/* ─── FERIENFREIZEIT WIZARD ────────────────────────────────── */
.wizard-section { padding: var(--space-lg) 0; }

.wizard-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text-muted);
  transition: var(--transition);
}

.wizard-step.active .step-circle {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.wizard-step.done .step-circle {
  background: var(--color-primary-bg);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-text-muted);
  white-space: nowrap;
}

.wizard-step.active .step-label { color: var(--color-primary); }

.wizard-connector {
  flex: 1;
  max-width: 60px;
  height: 2px;
  background: var(--color-border);
  margin: 0 0.5rem;
  margin-bottom: 1.5rem;
}

.wizard-panel {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  display: none;
}

.wizard-panel.active { display: block; }

.wizard-panel h2 { margin-bottom: 0.5rem; }
.wizard-panel > p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 2rem; }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
}

/* ─── IMPRESSUM / PRIVACY ──────────────────────────────────── */
.impressum-section {
  padding: var(--space-lg) 0;
}

.impressum-content {
  max-width: 760px;
  margin: 0 auto;
}

.impressum-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--color-primary);
}

.impressum-content h2:first-child { margin-top: 0; }

.impressum-content p,
.impressum-content address {
  font-size: 0.95rem;
  color: var(--color-text);
  font-style: normal;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

/* ─── MOBILE NAVIGATION ────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 999;
  padding: 6rem var(--container-pad) 2rem;
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-nav.open {
  display: flex;
  transform: translateX(0);
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  display: block;
}

.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--color-primary-bg);
  color: var(--color-primary);
}

.mobile-nav-sub {
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-sub a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
}

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .angebote-grid { grid-template-columns: repeat(2, 1fr); }
  .zahlen-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding-right: 0; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 400px; margin: 0 auto; }
  .hero-badge { display: none; }

  .ueber-uns-inner { grid-template-columns: 1fr; }
  .ueber-uns-image { max-width: 500px; margin: 0 auto; }

  .sprechstunde-intro { grid-template-columns: 1fr; }
  .sprechstunde-schritte { grid-template-columns: 1fr; }
  .tandem-inner { grid-template-columns: 1fr; }

  .kontakt-inner { grid-template-columns: 1fr; }

  .karin-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .karin-photo-wrap { max-width: 300px; margin: 0 auto; }

  .spenden-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .spenden-buttons { justify-content: center; }
  .spenden-qr-wrap { display: none; }

  .angebot-detail { grid-template-columns: 1fr; }
  .angebot-detail--flip .angebot-detail-content { order: unset; }

  .spenden-platforms { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  .events-grid { grid-template-columns: 1fr; }

  .vorstand-grid { grid-template-columns: repeat(2, 1fr); }

  .projekte-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .main-nav, .header-cta .btn:not(.btn-spenden-header) { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  :root { --container-pad: 1rem; }

  /* Hero: Texte kleiner, Bild sichtbar + oben, Sprechstunden-Button ausblenden */
  .hero { padding: var(--space-md) 0 var(--space-sm); }
  .hero-visual { order: -1; max-width: 85%; }
  .hero h1 { font-size: 1.6rem; }
  .hero-eyebrow { font-size: 0.75rem; padding: 0.3rem 0.8rem; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: var(--space-sm); }
  .hero-actions .btn-secondary { display: none; }
  .hero-actions .btn-outline { font-size: 0.9rem; }
  .hero-trust { font-size: 0.8rem; gap: 0.75rem; }

  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .zahlen-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .angebote-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .timeline::before { left: 0; }
  .timeline-item { grid-template-columns: 1fr; padding-left: 1.5rem; }
  .timeline-item::before { left: -7px; }
  .timeline-date { text-align: left; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: var(--space-md) 0; }
}

@media (max-width: 500px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .angebote-grid { grid-template-columns: 1fr; }
  .projekte-grid { grid-template-columns: 1fr; }
  .vorstand-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .vorstand-photo { height: 200px; }
  .vorstand-photo-placeholder { height: 200px; }
  .vorstand-info { padding: 1rem; }
  .vorstand-info h3 { font-size: 1rem; }
  .vorstand-badge { font-size: 0.6rem; }
  .vorstand-funktion { font-size: 0.75rem; }
  .vorstand-beruf { font-size: 0.7rem; }
  .vorstand-email { font-size: 0.7rem; }
  .vorstand-bio { display: none; }
}

/* ─── UTILITIES ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-violet { color: var(--color-violet); }
.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.gap-1 { gap: var(--space-sm); }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text);
  color: rgba(255,255,255,0.9);
  padding: 1.25rem var(--container-pad);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden { transform: translateY(100%); }

.cookie-text {
  font-size: 0.875rem;
  flex: 1;
  min-width: 250px;
}

.cookie-text a { color: var(--color-primary); }

.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ─── Aktuelles / Blog ────────────────────────────────────── */
.aktuelles-section { padding: var(--space-lg) 0 var(--space-xl); }

.aktuelles-blog {
  max-width: 960px;
  margin: 0 auto;
}

/* Einzelner Blog-Beitrag */
.blog-post {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-md);
  overflow: hidden;
}

/* Querformat-Thumbnail oben */
.blog-post-thumb {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
}
.blog-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Inhaltsbereich unter dem Bild */
.blog-post-inner {
  padding: 1.5rem;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}
.blog-post-cat {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-post-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

/* Vorschautext — bleibt immer sichtbar, gleicher Stil wie voller Inhalt */
.blog-post-preview {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
}

/* Voller Inhalt — aufklappbar, schliesst nahtlos an */
.blog-post-full {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.blog-post.is-open .blog-post-full {
  max-height: none;
}

/* Vorschautext ausblenden wenn offen (voller Inhalt enthaelt alles) */
.blog-post.is-open .blog-post-preview {
  display: none;
}

.blog-post-content {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
}
.blog-post-content p { margin-bottom: 1rem; }
.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 1rem 0;
}
.blog-post-content h3,
.blog-post-content h4 {
  font-family: var(--font-heading);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.blog-post-content ul,
.blog-post-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.blog-post-content li { margin-bottom: 0.4rem; }
.blog-post-content a { color: var(--color-primary); text-decoration: underline; }
.blog-post-content a:hover { color: var(--color-primary-dark); }

/* Weiterlesen-Button */
.blog-post-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  padding: 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  transition: color 0.2s;
}
.blog-post-toggle-btn:hover { color: var(--color-primary-dark); }

.toggle-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.3s ease;
}
.blog-post.is-open .toggle-arrow {
  transform: rotate(-135deg);
  margin-top: 2px;
}
.blog-post.is-open .toggle-text::after {
  content: 'Einklappen';
}
.blog-post.is-open .toggle-text {
  font-size: 0;
}
.blog-post.is-open .toggle-text::after {
  font-size: 0.95rem;
}

/* Pagination */
.aktuelles-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
}
.aktuelles-pagination a,
.aktuelles-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.aktuelles-pagination a {
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.aktuelles-pagination a:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}
.aktuelles-pagination .current {
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}

/* Leerer Zustand */
.aktuelles-empty {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  color: var(--color-text-light);
}
.aktuelles-empty h2 {
  font-family: var(--font-heading);
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

@media (max-width: 768px) {
  .blog-post-inner { padding: 1.25rem; }
  .blog-post-title { font-size: 1.2rem; }
  .blog-post-thumb { aspect-ratio: 16 / 9; }
}
