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

:root {
  --green-900: #0d3320;
  --green-800: #14532d;
  --green-700: #166534;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;

  --neutral-950: #0a0a0a;
  --neutral-900: #171717;
  --neutral-800: #262626;
  --neutral-700: #404040;
  --neutral-600: #525252;
  --neutral-500: #737373;
  --neutral-400: #a3a3a3;
  --neutral-300: #d4d4d4;
  --neutral-200: #e5e5e5;
  --neutral-100: #f5f5f5;
  --neutral-50: #fafafa;
  --white: #ffffff;

  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-500: #ef4444;
  --red-700: #b91c1c;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --radius: 12px;
  --radius-sm: 6px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--neutral-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green-600);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--green-700); }

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--neutral-900);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.logo strong { font-weight: 700; }

.logo-img {
  height: 40px;
  width: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.logo-accent {
  width: 8px;
  height: 32px;
  background: var(--green-500);
  border-radius: 4px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  color: var(--neutral-600);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-links a:hover {
  color: var(--neutral-900);
  background: var(--neutral-100);
}

.nav-cta {
  background: var(--green-600) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--green-700) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-800);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--neutral-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, var(--green-900) 0%, var(--neutral-950) 50%, var(--green-800) 100%);
  opacity: 1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(34, 197, 94, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(22, 163, 74, 0.1) 0%, transparent 50%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-400);
  margin-bottom: 1.5rem;
  padding: 6px 14px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 50px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--neutral-400);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--neutral-500);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--green-500), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--green-500);
  color: var(--neutral-950);
}

.btn-primary:hover {
  background: var(--green-400);
  color: var(--neutral-950);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--neutral-300);
  border: 1px solid var(--neutral-700);
}

.btn-ghost:hover {
  border-color: var(--neutral-500);
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

/* ===== Section ===== */
.section {
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-600);
  margin-bottom: 1rem;
}

.section-label-light {
  color: var(--green-400);
}

.section h2,
.section-heading-light {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--neutral-900);
}

.section-heading-light {
  color: var(--white);
}

.section-dark {
  background: var(--neutral-950);
  color: var(--neutral-300);
}

.section-accent {
  background: var(--green-800);
  color: var(--white);
}

/* ===== About ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--neutral-700);
  margin-bottom: 1rem;
}

.about-main p {
  color: var(--neutral-500);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-card {
  padding: 1.5rem;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--green-500);
  border-radius: 0 4px 4px 0;
  transform: scaleY(0);
  transition: transform var(--transition);
}

.feature-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow);
}

.feature-card:hover::before {
  transform: scaleY(1);
}

.feature-number {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-500);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--neutral-900);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--neutral-500);
}

/* ===== Magazine Grid ===== */
.magazine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mag-featured {
  grid-row: 1 / 3;
}

.mag-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--neutral-900);
  border: 1px solid var(--neutral-800);
}

.mag-card:hover {
  border-color: var(--neutral-700);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.mag-featured {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  border-color: var(--green-700);
}

.mag-featured:hover {
  border-color: var(--green-600);
}

.mag-card-inner {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mag-featured .mag-card-inner {
  padding: 2.5rem;
  justify-content: flex-end;
}

.mag-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.tag-aktion {
  background: rgba(74, 222, 128, 0.15);
  color: var(--green-400);
}

.tag-workshop {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.tag-regular {
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
}

.tag-film {
  background: rgba(244, 114, 182, 0.15);
  color: #f472b6;
}

.mag-date {
  font-size: 0.75rem;
  color: var(--neutral-500);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.mag-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.mag-featured h3 {
  font-size: 1.75rem;
}

.mag-card p {
  font-size: 0.875rem;
  color: var(--neutral-400);
  line-height: 1.7;
  flex: 1;
}

.mag-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-800);
  font-size: 0.75rem;
  color: var(--neutral-500);
  font-weight: 500;
}

.mag-featured .mag-meta {
  border-top-color: rgba(255,255,255,0.1);
}

.mag-contact {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--neutral-500);
}

.mag-contact a {
  color: var(--green-400);
}

/* ===== Abpflastern ===== */
.abpflastern-hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
}

.abpflastern-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

.abpflastern-benefits {
  list-style: none;
  margin: 1.5rem 0;
}

.abpflastern-benefits li {
  color: var(--neutral-300);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.abpflastern-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-400);
  font-weight: 700;
}

.abpflastern-foerderung {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--green-500);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.5rem;
}

.abpflastern-foerderung h3 {
  color: var(--green-400);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.abpflastern-foerderung p {
  color: var(--neutral-300);
  line-height: 1.7;
}

.abpflastern-cta-box {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.abpflastern-cta-box h3 {
  color: var(--green-400);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.abpflastern-cta-box > p {
  color: var(--neutral-300);
  margin-bottom: 1rem;
}

.abpflastern-cta-box ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--neutral-300);
  margin-bottom: 1.5rem;
}

.abpflastern-cta-box ul li {
  padding: 0.3rem 0;
}

.abpflastern-wettbewerb {
  margin-top: 3rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.abpflastern-wettbewerb h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.abpflastern-wettbewerb p {
  color: var(--neutral-300);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}

/* ===== Campaigns ===== */
.campaigns-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--neutral-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.campaign-row {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  background: var(--white);
  transition: all var(--transition);
  align-items: flex-start;
}

.campaign-row:hover {
  background: var(--neutral-50);
}

.campaign-icon-block {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border-radius: var(--radius);
  font-size: 1.5rem;
}

.campaign-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--neutral-900);
}

.campaign-body p {
  font-size: 0.9rem;
  color: var(--neutral-500);
  line-height: 1.7;
}

.campaign-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-600);
}

.campaign-link:hover {
  color: var(--green-700);
}

/* ===== Vision ===== */
.vision-subtitle {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.vision-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.vision-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.vision-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
}

.vision-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.vision-bad {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.vision-bad .vision-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.vision-bad h3 { color: #fca5a5; }

.vision-good {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.vision-good .vision-icon {
  background: rgba(34, 197, 94, 0.2);
  color: var(--green-400);
}

.vision-good h3 { color: var(--green-400); }

.vision-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vision-card li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

.vision-bad li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: rgba(252, 165, 165, 0.6);
}

.vision-good li::before {
  content: '+';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--green-400);
}

/* ===== CTA ===== */
.cta-section {
  padding: 4rem 0;
}

.cta-box {
  background: var(--neutral-950);
  border-radius: var(--radius-lg);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(74, 222, 128, 0.05) 0%, transparent 60%);
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}

.cta-box p {
  color: var(--neutral-400);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

/* ===== Contact ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  color: var(--neutral-800);
  text-decoration: none;
}

.contact-card:hover {
  border-color: var(--green-500);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: var(--neutral-800);
}

.contact-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border-radius: 50%;
}

.contact-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.contact-card span {
  font-size: 0.8rem;
  color: var(--neutral-500);
  word-break: break-all;
}

.link-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--neutral-200);
}

.link-bar a {
  padding: 8px 16px;
  border: 1px solid var(--neutral-200);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--neutral-500);
  font-weight: 500;
  transition: all var(--transition);
}

.link-bar a:hover {
  border-color: var(--green-500);
  color: var(--green-600);
  background: var(--green-50);
}

/* ===== Footer ===== */
.footer {
  background: var(--neutral-950);
  padding: 2rem 0 1.5rem;
  color: var(--neutral-500);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--neutral-800);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--neutral-300);
}

.footer-brand .footer-logo-img {
  height: 28px;
  width: 28px;
}

.footer-brand .logo-accent {
  width: 6px;
  height: 24px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--neutral-500);
  font-size: 0.8rem;
  font-weight: 500;
}

.footer-links a:hover { color: var(--neutral-300); }

.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 1.5rem;
  color: var(--neutral-700);
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .mag-featured {
    grid-row: auto;
  }

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

  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .hero-content {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .abpflastern-layout {
    grid-template-columns: 1fr;
  }

  .campaign-row {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-box {
    padding: 3rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ===== Flyer Image ===== */
.mag-flyer-img {
  width: 100%;
  border-radius: 6px;
  margin-top: 1rem;
}
