/* ============================================
   bekircelik.de – Kommunalwahl 2026
   Klar, modern, wenig Text, großes Bild.
   Weiß, Schwarz, Linke-Rot. Schrift: Work Sans
   ============================================ */

:root {
  --rot: #e3000f;
  --schwarz: #191919;
  --weiss: #ffffff;
  --grau: #5f5f5f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Anker-Sprünge: Überschrift nicht hinter der Kopfleiste verstecken */
section[id] { scroll-margin-top: 84px; }

body {
  font-family: "Work Sans", sans-serif;
  background: var(--weiss);
  color: var(--schwarz);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== Kopfzeile ===== */
.kopf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(20px, 5vw, 64px);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 10;
}

.kopf-name {
  font-weight: 800;
  font-size: 19px;
  color: var(--schwarz);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.kopf-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.kopf-nav a {
  text-decoration: none;
  color: var(--schwarz);
  font-weight: 500;
  font-size: 15.5px;
}

.kopf-nav a:hover { color: var(--rot); }

.kopf-cta {
  background: var(--rot);
  color: var(--weiss) !important;
  padding: 9px 18px;
  font-weight: 700;
}

.kopf-cta:hover { background: var(--schwarz); }

/* ===== Hero: eine Botschaft, großes Bild ===== */
.held {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px) clamp(20px, 5vw, 64px) 0;
}

.held-bild { align-self: end; }

.held-info { padding-bottom: clamp(40px, 5vw, 72px); }

.held-info h1 {
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.held-info h1 .rot { color: var(--rot); }

.held-sub {
  color: var(--grau);
  font-size: clamp(15px, 1.6vw, 18px);
  margin-bottom: 32px;
}

.wahl-badge {
  display: inline-block;
  background: var(--rot);
  color: var(--weiss);
  font-weight: 800;
  font-size: clamp(14px, 1.5vw, 17px);
  padding: 7px 15px;
  transform: rotate(-2deg);
  margin-bottom: 26px;
}

.held-bild img {
  width: 100%;
  display: block;
}

.kontakt-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 26px;
}

.kontakt-knopf {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--weiss);
  color: var(--schwarz);
  text-decoration: none;
  font-weight: 700;
  font-size: 16.5px;
  padding: 13px 22px;
  transition: transform 0.12s ease;
}

.kontakt-knopf svg { width: 24px; height: 24px; flex-shrink: 0; }

.kontakt-knopf:hover { transform: translateY(-2px); }

.kontakt-wa {
  font-size: 18px;
  padding: 15px 26px;
}

.kontakt-wa svg { width: 28px; height: 28px; color: #25d366; }

/* ===== Knöpfe ===== */
.knopf {
  display: inline-block;
  background: var(--rot);
  color: var(--weiss);
  text-decoration: none;
  font-weight: 700;
  font-size: 16.5px;
  padding: 15px 28px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease;
}

.knopf:hover { background: var(--schwarz); }

/* ===== Abschnitte ===== */
.abschnitt {
  padding: clamp(34px, 5vw, 60px) clamp(20px, 5vw, 64px);
  max-width: 1280px;
  margin: 0 auto;
}

.abschnitt h2 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.02em;
  margin-bottom: clamp(22px, 3vw, 36px);
}

/* ===== Wer ich bin ===== */
.ueber-text { max-width: 680px; }

.ueber-gross {
  font-size: clamp(19px, 2.4vw, 26px);
  font-weight: 700;
  margin-bottom: 14px;
}

.ueber-text p {
  font-size: 16.5px;
  margin-bottom: 14px;
}

.ueber-text p.ueber-gross { font-size: clamp(19px, 2.4vw, 26px); }

.ueber-schluss {
  color: var(--rot);
  font-weight: 700;
  font-size: 17.5px !important;
}

/* ===== Themen ===== */
.themen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

.thema h3 {
  color: var(--rot);
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  border-top: 3px solid var(--rot);
  padding-top: 14px;
  margin-bottom: 8px;
}

.thema p {
  font-size: 16.5px;
  max-width: 320px;
}

/* ===== Kontakt (roter Block) ===== */
.abschnitt-rot {
  background: var(--rot);
  color: var(--weiss);
  max-width: none;
}

.kontakt-raster {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.abschnitt-rot h2 { color: var(--weiss); }

.kontakt-text p {
  font-size: clamp(17px, 2vw, 21px);
  margin-bottom: 22px;
  max-width: 420px;
}

.insta {
  color: var(--weiss);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.insta:hover { text-decoration: none; }

/* ===== Formular ===== */
.formular {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--weiss);
  padding: clamp(24px, 3vw, 36px);
  color: var(--schwarz);
}

.formular label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  font-size: 14.5px;
}

.formular input,
.formular textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border: 2px solid var(--schwarz);
  background: var(--weiss);
  color: var(--schwarz);
}

.formular input:focus,
.formular textarea:focus {
  outline: none;
  border-color: var(--rot);
}

.formular .knopf-weiss {
  background: var(--rot);
  color: var(--weiss);
}

.formular .knopf-weiss:hover { background: var(--schwarz); }

.formular-hinweis {
  font-size: 13px;
  color: var(--grau);
}

.formular-hinweis a { color: var(--grau); }

/* ===== Fußzeile ===== */
.fuss {
  padding: 26px clamp(20px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14.5px;
  color: var(--grau);
}

.fuss nav { display: flex; gap: 22px; }

.fuss a { color: var(--schwarz); text-decoration: none; font-weight: 500; }
.fuss a:hover { color: var(--rot); }

/* ===== Unterseiten ===== */
.rechtsseite {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 64px);
}

.rechtsseite h1 {
  font-weight: 800;
  font-size: clamp(30px, 5vw, 46px);
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}

.rechtsseite h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 30px 0 8px;
}

.rechtsseite p { margin-bottom: 14px; }

.zurueck {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--rot);
  font-weight: 700;
  text-decoration: none;
}

.zurueck:hover { text-decoration: underline; }

/* ===== Danke-Seite ===== */
.danke {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 14px;
}

.danke h1 {
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--rot);
}

/* ===== Handy ===== */
@media (max-width: 800px) {
  .kopf { padding: 14px 16px; gap: 8px; }
  .kopf-name { font-size: 16px; white-space: nowrap; }
  .kopf-nav { gap: 12px; }
  .kopf-nav a { font-size: 13.5px; white-space: nowrap; }
  .kopf-cta { padding: 8px 12px; }

  .held {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 12px;
  }
  .kontakt-raster { grid-template-columns: 1fr; }

  .wahl-badge { margin-bottom: 18px; }
  .held-info h1 { margin-bottom: 12px; }
  .held-sub { margin-bottom: 24px; }

  .knopf { display: block; text-align: center; }

  .fuss { justify-content: center; text-align: center; }
}
