/* =====================================================
   Mindestlohn abschaffen? NEIN am 27. September
   Farben & Typografie nach Kampagnen-Plakat
   ===================================================== */

:root {
  /* Farben aus dem Kampagnen-Plakat */
  --blue: #395083;
  --blue-dark: #2e416c;
  --blue-darker: #253457;
  --yellow: #fab435;
  --yellow-light: #fbc45e;
  --white: #ffffff;
  --off-white: #f2f5fb;
  --text: #1d2b40;
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  background: var(--yellow);
  color: var(--blue-darker);
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--yellow-light);
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.4rem 1.1rem;
  font-size: 0.9rem;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.25rem;
  background: var(--blue-darker);
  color: var(--white);
}

.header-brand {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-nein {
  color: var(--yellow);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.header-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.header-nav a:hover {
  color: var(--yellow);
}

.header-nav a.btn {
  color: var(--blue-darker);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

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

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--blue-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .header-nav.open {
    display: flex;
  }
}

/* ===== Hero ===== */
.hero {
  background: var(--blue);
  color: var(--white);
  padding: 3.5rem 1.25rem 4rem;
  text-align: center;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 11vw, 5.5rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.hero-visual {
  max-width: 460px;
  margin: 1.5rem auto 0.5rem;
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-nein {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 8.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-date {
  font-size: clamp(1.2rem, 3.5vw, 1.6rem);
  font-weight: 700;
  color: var(--yellow);
  margin-top: 0.5rem;
}

.btn-hero {
  margin-top: 2rem;
  font-size: 1.1rem;
}

/* ===== Komitee ===== */
.committee {
  background: var(--off-white);
  padding: 2.25rem 1.25rem;
  text-align: center;
}

.committee-title {
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.committee-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
  list-style: none;
}

.committee-logos li {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid #dde3ee;
  border-radius: 8px;
  padding: 0.6rem 1rem;
}

.committee-logos img {
  max-height: 52px;
  max-width: 170px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ===== Intro ===== */
.intro {
  padding: 3.5rem 0;
}

.intro h2 {
  color: var(--blue);
}

.intro p {
  font-size: 1.1rem;
}

/* ===== Argumente & FAQ (Akkordeon) ===== */
.arguments {
  background: var(--blue);
  color: var(--white);
  padding: 3.5rem 0;
}

.faq {
  padding: 3.5rem 0;
}

.faq h2 {
  color: var(--blue);
}

.accordion-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--white);
  color: var(--text);
}

.faq .accordion-item {
  background: var(--off-white);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-darker);
}

.accordion-trigger:hover {
  color: var(--blue);
}

.accordion-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.accordion-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translateY(-50%) rotate(0deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.accordion-item.open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-content {
  overflow: hidden;
  padding: 0 1.25rem;
}

.accordion-item.open .accordion-content {
  padding-bottom: 1.25rem;
}

.accordion-content p + p {
  margin-top: 0.85rem;
}

.arguments-closing {
  margin-top: 2rem;
  font-size: 1.15rem;
  border-left: 5px solid var(--yellow);
  padding-left: 1.25rem;
}

/* ===== Kontakt ===== */
.contact {
  background: var(--off-white);
  padding: 3.5rem 0;
}

.contact .container {
  max-width: 960px;
}

.contact h2 {
  color: var(--blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Honeypot-Feld ausserhalb des Viewports verstecken (nicht display:none,
   damit einfache Bots es weiterhin "sehen" und ausfüllen) */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 2px solid #c6d0e0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-support {
  border: none;
  margin: 1.25rem 0 1.5rem;
}

.form-support legend {
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
  cursor: pointer;
}

.checkbox input {
  margin-top: 0.3rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--blue);
}

.form-status {
  margin-top: 0.75rem;
  font-weight: 600;
  min-height: 1.5em;
}

.form-status.error {
  color: #b3261e;
}

.form-status.success {
  color: #1a7f37;
}

.testimonial-box {
  background: var(--blue);
  color: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
}

.testimonial-box h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

.testimonial-box p + p {
  margin-top: 0.75rem;
}

.testimonial-box a {
  color: var(--yellow);
  font-weight: 700;
}

/* ===== Spenden ===== */
.donate {
  background: var(--blue-darker);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}

.donate p {
  max-width: 620px;
  margin: 0 auto;
}

.iban-box {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  background: var(--blue);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-top: 1.75rem;
}

.iban-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--yellow);
}

.iban {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.iban-hint {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
  font-size: 0.95rem;
  text-align: center;
}

.footer-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.site-footer p + p {
  margin-top: 0.75rem;
}

.footer-link {
  color: var(--yellow);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .accordion-panel,
  .accordion-icon::before,
  .accordion-icon::after,
  .btn {
    transition: none;
  }
}
