/* ===== Design tokens (colours taken from the campaign flyer) ===== */
:root {
  --navy:        #0f1b4c;   /* dark headline blue */
  --blue:        #1b3fae;   /* accent blue */
  --blue-light:  #eaf0ff;
  --red:         #e2001a;   /* Wahlkreuz red */
  --ink:         #1a2233;
  --muted:       #5a6473;
  --bg:          #ffffff;
  --bg-alt:      #f4f6fb;
  --border:      #e3e7f0;
  --radius:      14px;
  --shadow:      0 10px 30px rgba(15, 27, 76, 0.08);
  --maxw:        1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Accent bar (echoes the vertical bars on the flyer) */
.bar {
  display: inline-block;
  width: 6px;
  height: 1em;
  background: var(--blue);
  border-radius: 3px;
  margin-right: 14px;
  transform: translateY(2px);
}
.bar-red { background: var(--red); }

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%);
  padding: 72px 0 80px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-areas:
    "headline portrait"
    "claim    portrait";
  column-gap: 56px;
  row-gap: 12px;
  align-items: center;
}
.hero-headline { grid-area: headline; align-self: end; }
.hero-portrait { grid-area: portrait; }
.hero-claim { grid-area: claim; align-self: start; }
.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.98;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.hero-tags {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 8px;
}
.hero-office {
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 22px;
}
.hero-office strong { color: var(--navy); }
.hero-claim {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  max-width: 30ch;
  margin: 0 0 30px;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--navy); }
.btn-ghost {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

.hero-portrait { display: flex; justify-content: center; }
.hero-portrait img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 18px;
}

/* ===== Sections ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  display: flex;
  align-items: baseline;
}

/* Über mich */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.fact-list li {
  position: relative;
  padding: 0 0 18px 30px;
  font-size: 1.1rem;
}
.fact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 3px;
}
.fact-list li strong { color: var(--navy); }
.creed {
  margin: 0;
  padding: 28px 30px;
  background: var(--blue-light);
  border-left: 6px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
}
.creed strong { color: var(--blue); }

/* Themen cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 27, 76, 0.12);
}
.card-icon {
  line-height: 1;
  margin-bottom: 16px;
}
.card-icon svg {
  width: 52px;
  height: 52px;
  color: var(--blue);
}
.card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0 0 12px;
}
.card p { margin: 0; color: var(--muted); }

/* Wahl */
.lead {
  font-size: 1.25rem;
  max-width: 60ch;
  margin: 0 0 32px;
}
.ballots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.ballot {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  box-shadow: var(--shadow);
}
.ballot-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}
.ballot-body { padding-top: 2px; }
.ballot-note {
  display: block;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 6px;
}
.ballot-highlight {
  border: 3px solid var(--red);
  background: #fff5f5;
  box-shadow: 0 10px 30px rgba(226, 0, 26, 0.15);
}
.ballot-highlight .ballot-num { background: var(--red); }
.ballot-highlight .ballot-note { color: var(--red); font-weight: 600; }
.ballot-highlight .ballot-note strong { color: var(--red); }

/* Call to action */
.cta {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 44px 48px;
}
.cta-text p { margin: 0 0 12px; font-size: 1.1rem; color: #dfe4f5; }
.cta-hello { font-size: 1.2rem !important; }
.cta-big {
  font-size: 2rem !important;
  font-weight: 800;
  color: #fff !important;
}
.cta-text strong { color: #fff; }
.hl-red { color: #ff5a68; }
.cta-marks {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.cta-marks img {
  width: 33%;
  max-width: 110px;
  height: auto;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
}

/* ===== Kontakt-Panel ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 30px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 27, 76, 0.12);
  border-color: var(--blue);
  text-decoration: none;
}
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  margin-bottom: 8px;
}
.contact-label { font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.contact-value { color: var(--muted); font-size: 0.95rem; word-break: break-word; }

/* ===== Footer ===== */
.site-footer {
  background: #0a1338;
  color: #cfd6ee;
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-name { font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0; }
.footer-sub { margin: 4px 0 0; color: #aab3d6; }
.footer-contact { text-align: right; }
.footer-mail { color: #fff; font-weight: 600; font-size: 1.1rem; }
.socials {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 14px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: background .15s ease, transform .15s ease;
}
.socials a:hover { background: var(--blue); transform: translateY(-2px); text-decoration: none; }
.footer-bottom a { color: #aab3d6; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  font-size: 0.9rem;
  color: #8b96c2;
}
.footer-bottom p { margin: 0; }
.footer-note {
  flex-basis: 100%;
  margin: 0 0 14px !important;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.82rem;
  line-height: 1.5;
  color: #8b96c2;
}

/* Sternchen-Markierung (Vorläufigkeitsvermerk) */
.fn-mark {
  color: var(--red);
  font-weight: 700;
}
/* Superskript, ohne die Zeilenhöhe zu vergrößern */
sup.fn-mark {
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
  top: -0.45em;
}
.footer-note .fn-mark,
.cta .fn-mark { color: #ff5a68; }

/* ===== Legal page ===== */
.legal-inner { max-width: 800px; }
.legal h2 {
  color: var(--navy);
  font-size: 1.25rem;
  margin: 32px 0 8px;
}
.legal p { color: var(--ink); }
.legal .back { margin-top: 40px; font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "headline"
      "portrait"
      "claim";
    row-gap: 28px;
  }
  .hero-headline { align-self: auto; }
  .hero-claim { align-self: auto; }
  .hero-portrait img { max-width: 280px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .ballots { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; padding: 32px 28px; text-align: center; }
  .cta-marks { margin-top: 8px; }
}
@media (max-width: 620px) {
  .cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .hero { padding: 48px 0 56px; }
}
