/* ==========================================================================
   Nicole für Oldenburg — Kampagnen-Website
   Farben/Fonts siehe konzept/Styleguide.md — Änderungen bitte dort mitpflegen
   ========================================================================== */

@font-face {
  font-family: "Archivo Black";
  src: url("../fonts/ArchivoBlack-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/Barlow-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --schwarz: #000000;
  --orange: #FF8800;
  --lila: #6B1779;
  --magenta: #9C1CB2;
  --weiss: #FFFFFF;
  --nebel: #F7F4F8;
  --band: linear-gradient(90deg, var(--lila), var(--magenta), var(--orange));

  --font-headline: "Archivo Black", "Arial Black", sans-serif;
  --font-text: "Barlow", "Segoe UI", sans-serif;

  --max-width: 1120px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--schwarz);
  background: var(--weiss);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

a { color: var(--lila); }
a:hover { color: var(--magenta); }

h1, h2, h3 {
  font-family: var(--font-headline);
  font-weight: 400; /* Archivo Black hat nur einen Schnitt – sonst rechnet der Browser Fake-Bold dazu, das staucht die Glyphen */
  line-height: 1.2;
  letter-spacing: .01em;
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1em; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.band {
  height: 6px;
  background: var(--band);
  border: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-headline);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;
  font-size: .95rem;
  text-decoration: none;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  border: 2px solid var(--schwarz);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--schwarz);
  border-color: var(--orange);
}
.btn-primary:hover { color: var(--schwarz); box-shadow: 0 6px 18px rgba(255,136,0,.4); }

.btn-outline {
  background: transparent;
  color: var(--weiss);
  border-color: var(--weiss);
}
.btn-outline:hover { color: var(--weiss); background: rgba(255,255,255,.12); }

/* ---------- Ankündigungsleiste ---------- */
.topbar {
  background: var(--schwarz);
  color: var(--weiss);
  text-align: center;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .01em;
  padding: .55rem 1rem;
}
.topbar strong { color: var(--orange); font-weight: 700; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--weiss);
  border-bottom: 1px solid #ececec;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--schwarz);
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: 1.1rem;
}
.nav-brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.nav-brand span.fuer { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--schwarz);
  font-weight: 600;
  font-size: .95rem;
}
.nav-links a:hover { color: var(--magenta); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--schwarz);
  border-radius: 8px;
  padding: .4rem .6rem;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--schwarz);
  position: relative;
  transition: transform .2s ease;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

/* ---------- Hero ---------- */
.hero {
  background: var(--schwarz);
  color: var(--weiss);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.hero-moin {
  font-family: var(--font-headline);
  font-weight: 400;
  color: var(--orange);
  font-size: 1.4rem;
  display: block;
  margin-bottom: .4rem;
}
.hero h1 { margin-bottom: .6rem; }
.hero h1 .fuer { color: var(--orange); }
.hero-sub {
  font-size: 1.15rem;
  max-width: 46ch;
  color: #eee;
}
.hero-kreuz {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.4rem;
}
.hero-kreuz span {
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--weiss);
  max-width: 22ch;
  line-height: 1.25;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: var(--band);
}

/* ---------- Sections ---------- */
section { padding: 4.5rem 0; }
.section-nebel { background: var(--nebel); }
.eyebrow {
  font-family: var(--font-headline);
  font-weight: 400;
  color: var(--magenta);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: .5rem;
}

/* ---------- Über mich ---------- */
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}
.about-grid img { border-radius: var(--radius); }
.quote {
  font-family: var(--font-text);
  font-style: italic;
  font-size: 1.2rem;
  border-left: 4px solid var(--orange);
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #333;
}

/* ---------- Programm-Grid ---------- */
.programm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}
.programm-card {
  background: var(--weiss);
  border-radius: var(--radius);
  padding: 1.6rem;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.programm-card .num {
  font-family: var(--font-headline);
  font-weight: 400;
  color: var(--orange);
  font-size: .85rem;
}
.programm-card h3 { font-weight: 400; }
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: .5rem 0 .9rem;
}
.icon-badge svg { width: 26px; height: 26px; color: var(--weiss); }

/* Farb-Rhythmus im Wechsel Lila / Magenta / Orange (Nicole-Band-Farben) */
.programm-card:nth-child(3n+1) .icon-badge { background: var(--lila); }
.programm-card:nth-child(3n+2) .icon-badge { background: var(--magenta); }
.programm-card:nth-child(3n) .icon-badge { background: var(--orange); }
.programm-card:nth-child(3n) .icon-badge svg { color: var(--schwarz); }
.programm-card h3 { margin-bottom: .4rem; }
.programm-card p { font-size: .95rem; color: #333; margin: 0; }

/* ---------- Bist-du-ein-Pirat CTA ---------- */
.pirat-cta {
  background: var(--band);
  color: var(--weiss);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}
.pirat-cta h2 { margin-bottom: .6rem; }
.pirat-cta p { max-width: 60ch; margin: 0 auto 1.4rem; }
.pirat-cta-logo {
  height: 68px;
  width: auto;
  margin: 0 auto 1.3rem;
  display: block;
}

/* ---------- Wahlaufruf ---------- */
.wahlaufruf {
  background: var(--schwarz);
  color: var(--weiss);
  text-align: center;
  padding: 3.5rem 0;
}
.wahlaufruf h2 { color: var(--weiss); }
.wahlaufruf p {
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #ddd;
}
.wahlaufruf p strong { color: var(--orange); }

/* ---------- Mitmachen / Kontakt ---------- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.kontakt-card {
  background: var(--schwarz);
  color: var(--weiss);
  border-radius: var(--radius);
  padding: 2rem;
}
.kontakt-card a.btn { margin-top: 1rem; }
.kontakt-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.kontakt-list li { margin-bottom: .6rem; }
.kontakt-note { font-size: .85rem; color: #666; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--nebel);
  padding: 2.5rem 0 1.5rem;
  font-size: .9rem;
  color: #444;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links { display: flex; gap: 1.2rem; list-style: none; padding: 0; margin: 0; }
.footer-links a { color: #444; text-decoration: none; }
.footer-links a:hover { color: var(--magenta); }
.footer-party { display: flex; align-items: center; gap: .6rem; }
.footer-party img { width: 28px; height: 28px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 2.2rem; }
  .hero-photo { order: -1; max-width: 320px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .programm-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--weiss);
    flex-direction: column;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #ececec;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-block; }
}
@media (max-width: 560px) {
  .programm-grid { grid-template-columns: 1fr; }
}
