/* ================================================
   CDU Kandidaten-Website – Daniel Sturm LTW 2026
   ================================================ */

/* === DESIGN TOKENS === */
:root {
  --dunkel-gold:   #fd892b;
  --union-gold:    #ffa600;
  --hell-gold:     #fcc045;
  --rhoenblau:     #2d3c4b;
  --rhoenblau-60:  #737986;
  --rhoenblau-25:  #bec1c7;
  --rhoenblau-10:  #e5e5e9;
  --petrol:        #279fa7;
  --petrol-dark:   #1d8a91;
  --weiss:         #ffffff;
  --schwarz:       #1a1a1a;

  --gradient-main: linear-gradient(
    135deg,
    var(--dunkel-gold) 0%,
    var(--union-gold)  70%,
    var(--hell-gold)   100%
  );

  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  32px;
  --space-xl:  64px;
  --space-2xl: 96px;
  --space-3xl: 128px;
  --section-py: clamp(72px, 9vw, 128px);
  --container:  min(1200px, 90vw);

  --nav-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'IBM Plex Serif', Georgia, serif;
  color: var(--schwarz);
  background: var(--weiss);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
.headline {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.body-text {
  font-family: 'IBM Plex Serif', serif;
  font-weight: 400;
  line-height: 1.65;
}

/* === LAYOUT === */
.container {
  width: var(--container);
  margin-inline: auto;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--petrol);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8em 1.8em;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--petrol-dark);
  transform: translateY(-2px);
  outline: none;
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7em 1.5em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* === CLAIM BALKEN === */
.claim-zweizeilig {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  margin: 1.75rem 0;
}
.claim-balken {
  display: block;
  background: var(--rhoenblau);
  color: var(--weiss);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 4rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding: 0.18em 0.42em;
  line-height: 1.1;
}

/* === LOGO === */
.logo-wrapper {
  background: var(--weiss);
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
}
.logo-wrapper img {
  height: 48px;
  width: auto;
}
.logo-wrapper--footer img {
  height: 40px;
}

/* === SECTION LABELS === */
.section-label {
  margin-bottom: 0.75rem;
}
.label-gold {
  display: inline-block;
  background: var(--dunkel-gold);
  color: var(--rhoenblau);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3em 0.7em;
}
.label-blau {
  display: inline-block;
  background: var(--rhoenblau);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3em 0.7em;
}

.section-header {
  margin-bottom: var(--space-xl);
}
.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--rhoenblau);
  margin-top: 0.5rem;
}
.section-subline {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  color: var(--rhoenblau-60);
  max-width: 58ch;
}

/* === FOTO PLACEHOLDER === */
.foto-placeholder {
  background: linear-gradient(135deg, var(--rhoenblau-10) 0%, var(--rhoenblau-25) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foto-placeholder::before {
  content: 'Foto: Daniel Sturm';
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--rhoenblau-60);
}

/* === HOVER KARTE === */
.karte {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.karte:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(45,60,75,0.14);
}

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger für Kinder-Elemente */
.themen-grid .reveal:nth-child(2),
.news-grid .reveal:nth-child(2),
.key-facts .reveal:nth-child(2) { transition-delay: 0.1s; }
.themen-grid .reveal:nth-child(3),
.news-grid .reveal:nth-child(3),
.key-facts .reveal:nth-child(3) { transition-delay: 0.2s; }
.themen-grid .reveal:nth-child(4) { transition-delay: 0.3s; }


/* ================================================
   NAVIGATION
   ================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--rhoenblau);
  height: var(--nav-h);
  transition: box-shadow 0.3s ease, height 0.3s ease;
}
.site-nav.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.28);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  height: 100%;
}

.logo-link { flex-shrink: 0; }

.nav-links {
  display: flex;
  gap: clamp(12px, 1.8vw, 28px);
  margin-left: auto;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--dunkel-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: white;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta { margin-left: var(--space-sm); }

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

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  padding-bottom: 3px;
  position: relative;
  transition: color 0.2s ease;
}
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--dunkel-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: white;
}
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle.active::after {
  transform: scaleX(1);
}
.nav-dropdown-arrow {
  font-size: 1rem;
  transition: transform 0.25s ease;
  display: inline-block;
  line-height: 1;
}
.nav-dropdown.is-open .nav-dropdown-arrow {
  transform: rotate(90deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--rhoenblau);
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border-top: 3px solid var(--dunkel-gold);
  z-index: 300;
  padding: var(--space-sm) 0;
  padding-top: 8px;
}
.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 0.65em var(--space-lg);
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a.active {
  background: rgba(255,255,255,0.08);
  color: white;
}
.nav-dropdown-menu li a.active {
  border-left: 3px solid var(--dunkel-gold);
  padding-left: calc(var(--space-lg) - 3px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  background-size: 220% 220%;
  animation: gradientShift 9s ease infinite;
  z-index: 0;
}
@keyframes gradientShift {
  0%   { background-position: 0% 60%; }
  50%  { background-position: 100% 40%; }
  100% { background-position: 0% 60%; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  width: var(--container);
  margin-inline: auto;
  padding-top: var(--space-2xl);
}

.hero-text {
  padding-bottom: var(--space-2xl);
}

.hero-kicker {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: var(--space-md);
}
.hero-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  color: white;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: 2.25rem;
}

.hero-foto {
  align-self: flex-end;
  overflow: hidden;
  position: relative;
}
.hero-foto img {
  width: 100%;
  height: calc(100svh - var(--nav-h));
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Photo copyright credit */
.foto-credit {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.4);
  padding: 2px 6px;
  border-radius: 2px;
  z-index: 3;
  line-height: 1.5;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.foto-credit a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
}
.foto-credit a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Hero tagline */
.hero-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  font-style: italic;
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  margin-inline: auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.7; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}


/* ================================================
   ÜBER MICH
   ================================================ */
.ueber-mich {
  padding-block: var(--section-py);
  background: var(--weiss);
}

.ueber-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.ueber-foto {
  position: relative;
}
.ueber-foto img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 32px 80px rgba(45,60,75,0.16);
}

.ueber-headline {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--rhoenblau);
  margin-bottom: var(--space-lg);
  margin-top: 0.5rem;
}
.ueber-text .body-text {
  font-size: 1.05rem;
  color: var(--schwarz);
  margin-bottom: var(--space-md);
}

/* Key Facts */
.key-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.key-fact-kachel {
  background: var(--dunkel-gold);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.key-fact-zahl {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--rhoenblau);
  letter-spacing: -0.03em;
  line-height: 1;
}
.key-fact-label {
  font-size: 0.78rem;
  color: var(--rhoenblau);
  line-height: 1.4;
}


/* ================================================
   WAHLKREIS DETAIL
   ================================================ */
.wahlkreis-detail {
  padding-block: var(--space-xl) var(--section-py);
  background: var(--rhoenblau-10);
  border-top: 3px solid var(--dunkel-gold);
}
.wahlkreis-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}
.wahlkreis-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.wahlkreis-block .body-text {
  font-size: 1rem;
  color: var(--rhoenblau);
  line-height: 1.7;
}
.wahlkreis-block strong {
  font-weight: 700;
}

@media (max-width: 640px) {
  .wahlkreis-inner {
    grid-template-columns: 1fr;
  }
}


/* ================================================
   THEMEN
   ================================================ */
.themen {
  padding-block: var(--section-py);
  background: var(--rhoenblau-10);
}

.themen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.themen-kachel {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.themen-kachel--gradient {
  background: var(--gradient-main);
}
.themen-kachel--blau {
  background: var(--rhoenblau);
}

.themen-icon {
  width: 56px;
  height: 56px;
  padding: 6px;
  background: rgba(255,255,255,0.18);
}
.themen-kachel--gradient .themen-icon {
  background: rgba(45,60,75,0.1);
}
.themen-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.themen-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--rhoenblau);
}
.themen-headline--weiss {
  color: white;
}
.themen-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(45,60,75,0.85);
}
.themen-text--weiss {
  color: rgba(255,255,255,0.82);
}


/* ================================================
   ZITAT
   ================================================ */
.zitat-section {
  padding-block: var(--section-py);
  background: var(--rhoenblau);
}

.zitat-block {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.zitat-anfuehrung {
  font-family: 'IBM Plex Serif', serif;
  font-size: clamp(5rem, 10vw, 11rem);
  color: var(--union-gold);
  line-height: 0.65;
  display: block;
  margin-bottom: var(--space-md);
}
.zitat-text {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: white;
  font-style: italic;
  line-height: 1.7;
}
.zitat-quelle {
  margin-top: var(--space-lg);
}
.zitat-quelle cite {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--union-gold);
}


/* ================================================
   AKTUELLES
   ================================================ */
.aktuelles {
  padding-block: var(--section-py);
  background: var(--weiss);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.news-card {
  background: var(--weiss);
  border: 1px solid var(--rhoenblau-10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(45,60,75,0.06);
}
.news-card-bild {
  height: 200px;
  flex-shrink: 0;
}
.news-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.news-datum {
  font-size: 0.82rem;
  color: var(--rhoenblau-60);
  font-style: italic;
}
.news-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--rhoenblau);
  line-height: 1.35;
  margin-top: 4px;
}
.news-teaser {
  font-size: 0.88rem;
  color: var(--rhoenblau-60);
  line-height: 1.6;
  flex: 1;
  margin-top: 6px;
}
.news-mehr {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dunkel-gold);
  margin-top: var(--space-md);
  display: inline-block;
  transition: color 0.2s ease, transform 0.2s ease;
}
.news-mehr:hover {
  color: var(--rhoenblau);
  transform: translateX(3px);
}


/* ================================================
   KONTAKT
   ================================================ */
.kontakt {
  padding-block: var(--section-py);
  background: var(--gradient-main);
  background-size: 220% 220%;
  animation: gradientShift 10s ease infinite;
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

.headline-balken {
  display: inline-block;
  background: var(--rhoenblau);
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.03em;
  padding: 0.15em 0.35em;
  line-height: 1;
}
.headline-kontakt {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.kontakt-subline {
  color: rgba(255,255,255,0.9);
  margin-top: var(--space-lg);
  font-size: 1.05rem;
  max-width: 42ch;
}
.kontakt-social {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

/* Form */
.kontakt-form {
  background: white;
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: 0 24px 64px rgba(45,60,75,0.2);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rhoenblau);
}
.form-group input,
.form-group textarea {
  border: 1.5px solid var(--rhoenblau-25);
  padding: 0.7em 0.9em;
  font-family: 'IBM Plex Serif', serif;
  font-size: 0.95rem;
  color: var(--schwarz);
  background: var(--weiss);
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--rhoenblau-25);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--petrol);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #c62828;
}

.btn-submit {
  align-self: flex-start;
  font-size: 1rem;
  padding: 0.85em 2.2em;
}
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-success {
  display: none;
  background: var(--rhoenblau);
  color: white;
  padding: var(--space-md);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
}
.form-success.visible {
  display: block;
}


/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--rhoenblau);
}

/* Contact grid */
.footer-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 64px);
  padding-block: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-contact-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dunkel-gold);
  margin-bottom: var(--space-md);
}
.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}
.footer-address a {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
}
.footer-address a:hover {
  color: var(--dunkel-gold);
}
.footer-address strong {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* Bottom bar */
.footer-bottom {
  padding-block: var(--space-lg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}
.footer-copy {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}
.footer-links {
  display: flex;
  gap: var(--space-lg);
}
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: white;
}

@media (max-width: 960px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}


/* ================================================
   RESPONSIVE – 960px
   ================================================ */
@media (max-width: 960px) {
  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--rhoenblau);
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    gap: var(--space-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 0.4em 0; }
  .nav-links { z-index: 199; }

  /* Dropdown mobile: inline aufklappen */
  .nav-dropdown-toggle {
    font-size: 1rem;
    padding-block: 0.4em;
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--dunkel-gold);
    margin-left: var(--space-md);
    padding: var(--space-xs) 0;
    background: rgba(255,255,255,0.05);
    min-width: unset;
  }
  .nav-dropdown-menu li a {
    padding: 0.5em var(--space-md);
    font-size: 0.95rem;
  }
  .nav-dropdown-menu li a.active {
    border-left: none;
    padding-left: var(--space-md);
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: var(--space-xl);
    min-height: calc(100svh - var(--nav-h));
    align-items: center;
  }
  /* Hero: Foto als Hintergrund auf Mobile statt verstecken */
  .hero-foto { display: none; }
  .hero-text { padding-bottom: var(--space-2xl); }
  .hero {
    background-image: url('assests/daniel-sturm-cdu-direktkandidat-wahlkreis-40.jpg');
    background-size: cover;
    background-position: center top;
  }
  .hero-bg {
    background: linear-gradient(
      135deg,
      rgba(253,137,43,0.92) 0%,
      rgba(255,166,0,0.88) 60%,
      rgba(252,192,69,0.82) 100%
    );
  }

  /* Über mich */
  .ueber-inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .ueber-foto {
    max-width: 380px;
    margin-inline: auto;
  }
  .ueber-foto img { aspect-ratio: 4/3; }

  /* Themen */
  .themen-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* News */
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Kontakt */
  .kontakt-inner {
    grid-template-columns: 1fr;
  }
  .kontakt-text { text-align: center; }
  .kontakt-subline { margin-inline: auto; }
  .kontakt-social { justify-content: center; }
}


/* ================================================
   RESPONSIVE – 640px
   ================================================ */
@media (max-width: 640px) {
  .hero-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
  .claim-balken { font-size: clamp(1.6rem, 8vw, 2.5rem); }

  .key-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
  }
  .key-fact-kachel { padding: var(--space-sm); }

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

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

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .hero-scroll-hint { display: none; }

  /* Nav mobile: links als große Touch-Targets */
  .nav-links a {
    padding-block: 0.5em;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Buttons: min 44px Touch-Target */
  .btn-primary,
  .btn-ghost,
  .btn-secondary {
    min-height: 44px;
  }

  /* Hero CTA: untereinander auf kleinen Screens */
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Kontakt-Formular: größere Inputs */
  .form-group input,
  .form-group textarea {
    font-size: 1rem; /* verhindert Auto-Zoom auf iOS */
    min-height: 44px;
  }
  .form-group textarea {
    min-height: 120px;
  }

  /* News: volle Breite */
  .news-grid { max-width: 100%; }

  /* Wahlkreis: single column schon bei 640 */
  .wahlkreis-inner { grid-template-columns: 1fr; }
}
