/* ===== CSS Variables & Design Tokens ===== */
:root {
  --primary: #0D9B84;
  --primary-dark: #0E3754;
  --primary-light: #14B89C;
  --secondary: #5CBFAE;
  --secondary-light: #7DD4C5;
  --accent: #0E3754;
  --bg-light: #F5FAFA;
  --bg-white: #FFFFFF;
  --bg-section: #EDF5F4;
  --bg-dark: #0E3754;
  --text-primary: #0E2A3D;
  --text-secondary: #3D5A6B;
  --text-muted: #5E7A88;
  --text-white: #FFFFFF;
  --border: #C8DDE4;
  --border-light: #E2EEF2;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 6px;
  --transition: 0.3s ease;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Source Serif 4', 'Georgia', serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-main);
  background: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  min-height: 100vh;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--primary-light); }

/* ===== Utility ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 14px;
  color: var(--primary);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(13, 155, 132, 0.08);
  color: var(--primary);
  border: 1px solid rgba(13, 155, 132, 0.15);
  margin-bottom: 12px;
}

section {
  padding: 90px 0;
  position: relative;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 2.5vw, 1.1rem);
  font-weight: 700;
  color: var(--primary);
  max-width: 75%;
  line-height: 1.2;
}

.nav-logo span {
  white-space: normal;
  word-wrap: break-word;
}

.nav-logo .logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: var(--text-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  object-fit: cover;
  transform: translateZ(0);
  box-shadow: 0 2px 8px rgba(13, 155, 132, 0.2);
  flex-shrink: 0;
}

.footer-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  transform: translateZ(0);
  flex-shrink: 0;
}

.nav-links {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 20px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-links.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-links a {
  color: var(--primary-dark);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 1.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: transparent;
  transform: scale(1.05);
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--text-white) !important;
  padding: 12px 30px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  margin-top: 15px;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: scale(1.05);
}

.mobile-toggle {
  display: block; /* Immer sichtbar */
  background: none;
  border: none;
  color: var(--primary-dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  z-index: 1000;
  position: relative;
}

/* ===== SPA View Mode ===== */
body > section {
  display: none !important;
  min-height: 100vh;
  animation: fadeInSPA 0.5s ease forwards;
}
body > section.active-section {
  display: block !important;
}
body > section.hero.active-section {
  display: flex !important;
}
@keyframes fadeInSPA {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(165deg, var(--bg-white) 0%, var(--bg-section) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.hero-bg .orb-1 {
  width: 600px; height: 600px;
  background: var(--primary);
  top: -200px; right: -150px;
}

.hero-bg .orb-2 {
  width: 400px; height: 400px;
  background: var(--secondary);
  bottom: -100px; left: -100px;
}

.hero-bg .orb-3 {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--primary-dark);
}

.hero-text h1 .gradient-text {
  background: linear-gradient(135deg, #0D9B84, #0E3754);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.08rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  box-shadow: 0 2px 8px rgba(13, 155, 132, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 155, 132, 0.3);
  color: var(--text-white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(13, 155, 132, 0.04);
  color: var(--primary);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
  border: 3px solid var(--border);
}

.hero-card {
  width: calc(100% - 32px);
  margin: -50px auto 0;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.hero-card .stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-item {
  text-align: center;
  padding: 18px 12px;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-item .stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== About / Ãœber Uns ===== */
.about {
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image .image-container {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image .image-container .placeholder-icon {
  font-size: 4rem;
  opacity: 0.2;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: var(--primary);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  margin-top: 22px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.feature-list li .icon {
  width: 36px;
  height: 36px;
  background: rgba(13, 155, 132, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ===== Arbeitskreise ===== */
.arbeitskreise {
  background: var(--bg-section);
}

.ak-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ak-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ak-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0D9B84, #0E3754);
  opacity: 0;
  transition: var(--transition);
}

.ak-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.ak-card:hover::before {
  opacity: 1;
}

.ak-icon {
  font-size: 2.4rem;
  padding: 28px 28px 0;
  line-height: 1;
}

.ak-content {
  padding: 16px 28px 20px;
  flex: 1;
}

.ak-content h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.ak-content p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

.ak-footer {
  padding: 14px 28px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-light);
}

.ak-members {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
}

/* ===== Ziele / Goals ===== */
.goals {
  background: var(--bg-section);
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.goal-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.goal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition);
}

.goal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.goal-card:hover::before {
  opacity: 1;
}

.goal-card .card-icon {
  width: 50px;
  height: 50px;
  background: rgba(13, 155, 132, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.goal-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.goal-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ===== Projekte ===== */
.projects {
  background: var(--bg-white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.project-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.project-card .project-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.project-card .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card .project-body {
  padding: 24px;
}

.project-card .project-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.project-card .project-tags span {
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(13, 155, 132, 0.07);
  color: var(--primary);
  border: 1px solid rgba(13, 155, 132, 0.12);
}

.project-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.project-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== Team / Mitglieder ===== */
.team {
  background: var(--bg-section);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card .avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 3px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.team-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.team-card .role {
  color: var(--secondary);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-card .team-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 10px;
  line-height: 1.6;
}

/* ===== Mitmachen / CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #0D9B84 0%, #0E3754 100%);
  text-align: center;
}

.cta-box {
  padding: 50px 40px;
  max-width: 780px;
  margin: 0 auto;
  background: none;
  border: none;
  border-radius: 0;
}

.cta-box::before { display: none; }

.cta-box h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 16px;
  color: var(--text-white);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.8;
}

.cta-box .btn-primary {
  background: #FFFFFF;
  color: #0E3754;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.cta-box .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0D9B84;
}

/* ===== Kontakt ===== */
.contact {
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.8;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-secondary);
}

.contact-details .detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(13, 155, 132, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 0.93rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 155, 132, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-dark);
  border-top: none;
  padding: 50px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-main);
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.7);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.83rem;
}

/* ===== Transparenz-Dashboard ===== */
.transparency {
  background: var(--bg-section);
}

/* Countdown Banner */
.countdown-banner {
  background: linear-gradient(135deg, #0D9B84 0%, #0E3754 100%);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}

.countdown-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.countdown-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.countdown-info h3 {
  color: var(--text-white);
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.countdown-info .countdown-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  min-width: 68px;
}

.countdown-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.countdown-label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.countdown-separator {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

/* Transparency Grid */
.transparency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.transparency-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.transparency-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

/* Progress Bars */
.progress-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.progress-percent {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.85rem;
}

.progress-bar-track {
  width: 100%;
  height: 8px;
  background: var(--bg-section);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progress-bar-fill.animated {
  width: var(--target-width);
}

/* Donut Chart */
.budget-chart-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.donut-chart {
  position: relative;
  width: 200px;
  height: 200px;
}

.donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.donut-bg {
  fill: none;
  stroke: var(--bg-section);
  stroke-width: 24;
}

.donut-segment {
  fill: none;
  stroke-width: 24;
  stroke-linecap: butt;
  transition: stroke-dasharray 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.seg-1 { stroke: var(--primary); }
.seg-2 { stroke: var(--primary-light); }
.seg-3 { stroke: var(--secondary); }
.seg-4 { stroke: var(--secondary-light); }
.seg-5 { stroke: var(--accent); }

.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.donut-total {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.donut-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.budget-legend {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.legend-item strong {
  margin-left: auto;
  color: var(--text-primary);
  font-size: 0.85rem;
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.dot-1 { background: var(--primary); }
.dot-2 { background: var(--primary-light); }
.dot-3 { background: var(--secondary); }
.dot-4 { background: var(--secondary-light); }
.dot-5 { background: var(--accent); }

/* Decisions Feed */
.decisions-feed {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.decisions-feed h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.decisions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.decision-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.decision-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.decision-status {
  flex-shrink: 0;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.status-approved {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-progress {
  background: rgba(234, 179, 8, 0.1);
  color: #ca8a04;
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.status-rejected {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.decision-content strong {
  font-size: 0.95rem;
  color: var(--text-primary);
  display: block;
  margin-bottom: 4px;
}

.decision-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.6;
}

.decision-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== Aktuelles / News ===== */
.news {
  background: var(--bg-white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.news-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: var(--transition);
}

/* Modern gradient patterns as premium visual cover placeholders */
.news-img-1 {
  background: linear-gradient(135deg, #0D9B84 0%, #0E3754 100%);
}

.news-img-2 {
  background: linear-gradient(135deg, #5CBFAE 0%, #0D9B84 100%);
}

.news-img-3 {
  background: linear-gradient(135deg, #0E3754 0%, #5CBFAE 100%);
}

.news-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
}

.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-dark { background: var(--accent); }

.news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.news-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
  transition: var(--transition);
}

.news-card:hover h3 {
  color: var(--primary);
}

.news-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.news-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.news-link:hover {
  color: var(--primary-dark);
  padding-left: 4px;
}

/* ===== Veranstaltungen / Events ===== */
.events {
  background: var(--bg-section);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.event-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.event-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.event-date {
  background: linear-gradient(135deg, #0D9B84 0%, #0E3754 100%);
  color: var(--text-white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(13, 155, 132, 0.15);
}

.event-day {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.event-month {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.event-content {
  flex-grow: 1;
}

.event-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.badge-sitzung {
  background: rgba(13, 155, 132, 0.08);
  color: var(--primary);
  border: 1px solid rgba(13, 155, 132, 0.15);
}

.badge-freizeit {
  background: rgba(92, 191, 174, 0.08);
  color: #2c7a6e;
  border: 1px solid rgba(92, 191, 174, 0.15);
}

.badge-workshop {
  background: rgba(14, 55, 84, 0.08);
  color: var(--primary-dark);
  border: 1px solid rgba(14, 55, 84, 0.15);
}

.event-content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.event-content p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.event-details {
  display: flex;
  gap: 24px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.event-icon {
  margin-right: 4px;
}

.event-action {
  flex-shrink: 0;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

/* ===== Event Tabs (Kommend / Vergangen) ===== */
.event-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 36px;
  max-width: 900px;
  flex-wrap: wrap;
}

.event-tab-btn {
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 12px 26px;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.event-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.event-tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(13, 155, 132, 0.28);
}

.event-tab-btn .tab-count {
  background: rgba(13, 155, 132, 0.1);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.event-tab-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.22);
  color: var(--text-white);
}

.event-tab-content {
  display: none !important;
  animation: fadeInTab 0.35s ease;
}

.event-tab-content.active {
  display: flex !important;
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.event-item.past-event {
  opacity: 0.9;
  background: #f8fafc;
  border-color: var(--border);
}

.event-item.past-event .event-date {
  background: linear-gradient(135deg, #475569 0%, #334155 100%);
  box-shadow: none;
}

/* ===== Artikel-Detailseiten ===== */
.article-header {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 50px;
  background: linear-gradient(165deg, var(--bg-white) 0%, var(--bg-section) 100%);
  border-bottom: 1px solid var(--border);
}

.article-header .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.article-header-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.article-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--primary-dark);
  margin-top: 15px;
  line-height: 1.2;
}

.article-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-top: 50px;
  margin-bottom: 90px;
}

.article-main {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-main h2 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-top: 35px;
  margin-bottom: 15px;
}

.article-main p {
  margin-bottom: 22px;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-primary);
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin-bottom: 30px !important;
}

.article-main blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--primary-dark);
  background: var(--bg-section);
  border-left: 5px solid var(--secondary);
  padding: 24px 30px;
  margin: 35px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: 1.6;
}

.article-main ul, .article-main ol {
  margin-bottom: 25px;
  padding-left: 20px;
}

.article-main li {
  margin-bottom: 10px;
}

/* Sidebar styling */
.article-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--secondary-light);
  padding-bottom: 8px;
}

.sidebar-widget p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 15px;
}

.sidebar-widget .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  transition: var(--transition);
  margin-bottom: 20px;
}

.article-back-link:hover {
  color: var(--primary-dark);
  transform: translateX(-4px);
}

/* Responsive adjustment for article layout */
@media (max-width: 768px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  body > section.hero.active-section {
    display: block !important;
    padding-top: 140px;
    padding-bottom: 60px;
  }
  .hero {
    overflow: visible;
  }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { margin-top: 36px; }
  .about-grid { grid-template-columns: 1fr; }
  .ak-grid { grid-template-columns: repeat(2, 1fr); }
  .goals-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .transparency-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Mobile nav styles handled globally now */
  .goals-grid { grid-template-columns: 1fr; }
  .ak-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .event-item {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }
  .event-date {
    align-self: center;
    min-width: 100px;
  }
  .event-details {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  .event-action {
    text-align: center;
    margin-top: 10px;
  }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  section { padding: 110px 0 60px 0; }
  .countdown-banner { flex-direction: column; text-align: center; padding: 24px; }
  .countdown-info { flex-direction: column; }
  .countdown-timer { flex-wrap: wrap; justify-content: center; }
  .countdown-unit { min-width: 58px; padding: 10px 12px; }
  .decision-item { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-card { padding: 24px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}

