/* ============================================================
   MORGENCLUB — Design-Steuerzentrale
   Farben und Schriften exakt aus dem Silvia Nagler Design System
   (Stand 23.7.2026). Tokennamen entsprechen den dortigen Namen.
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,600&family=Inter:wght@400;500;600;700&display=swap");

:root {
  /* ---------- 🎨 FARBEN aus dem Design System ---------- */
  --wollweiss:    #fcfbf8;
  --weiss:        #ffffff;
  --sand:         #f7ece1;
  --creme:        #f0f3f1;
  --salbei-hell:  #b3cac8;
  --salbei:       #83a2a2;
  --salbei-tief:  #5f7f7f;
  --schiefer:     #333c3b;
  --nebel:        #7c8b8a;
  --rose:         #eaa9a0;
  --terra:        #d98a63;   /* = Karamell / Camel / color-primary */
  --sonne:        #f5c268;   /* = Gold */
  --linie:        rgba(51, 60, 59, 0.11);

  /* ---------- Rollen ---------- */
  --brand-primary:      var(--schiefer);   /* Überschriften */
  --brand-primary-deep: var(--schiefer);   /* dunkle Flächen: Hero, Footer */
  --brand-accent:       var(--sonne);      /* Handlungsfarbe, Buttons */
  --brand-accent-hover: var(--terra);      /* Button-Hover */
  --brand-light:        var(--wollweiss);  /* helle Sektionen */
  --brand-sand:         var(--creme);      /* zarte Zwischenfläche */
  --brand-ink:          var(--schiefer);   /* Text auf hell */
  --brand-paper:        var(--wollweiss);  /* Text auf dunkel */
  --brand-sage:         var(--salbei);
  --brand-gold:         var(--sonne);

  /* ---------- ✍️ SCHRIFTEN aus dem Design System ---------- */
  --font-head: "Newsreader", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* ---------- Abgeleitete Werte ---------- */
  --muted-on-light: rgba(51, 60, 59, 0.78);
  --muted-on-dark:  rgba(252, 251, 248, 0.76);
  --hairline:       var(--linie);
  --radius: 14px;
  --maxw: 1060px;
}

/* ---------- Basis ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--brand-ink);
  background: var(--brand-light);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; font-weight: 600; color: var(--brand-primary); }
.sec-dark h1, .sec-dark h2, .sec-dark h3, .hero h1, .hero h2 { color: var(--brand-paper); }
h1 { font-size: clamp(2rem, 5.5vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 0.6em; }
h3 { font-size: 1.15rem; margin-bottom: 0.35em; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 14px; color: var(--salbei-tief);
}
.sec-dark .eyebrow, .hero .eyebrow { color: var(--brand-gold); }

/* Wortmarke im Hero, zugleich Rücklink auf die Startseite */
.brand-wordmark {
  display: inline-block;
  font-family: var(--font-head); font-weight: 600;
  letter-spacing: 0.02em; font-size: 1.15rem;
  color: var(--brand-paper); margin-bottom: 30px;
  border: 1px solid rgba(252, 251, 248, 0.35);
  border-radius: 999px; padding: 7px 18px;
  transition: background 0.15s ease;
}
a.brand-wordmark:hover { background: rgba(252, 251, 248, 0.10); }

/* ---------- Sektionen ---------- */
section { padding: 72px 0; }
.sec-light { background: var(--brand-light); }
.sec-sand  { background: var(--brand-sand); }
.sec-dark  { background: var(--brand-primary-deep); color: var(--brand-paper); }
.sec-dark .muted { color: var(--muted-on-dark); }
.muted { color: var(--muted-on-light); }
.lead { font-size: 1.15rem; max-width: 640px; }

/* ---------- Hero ---------- */
.hero {
  background: var(--brand-primary-deep); color: var(--brand-paper);
  padding: 88px 0 80px; text-align: left;
}
.hero .lead { margin: 20px 0 20px; color: var(--muted-on-dark); }
.next-date {
  display: inline-block; margin: 8px 0 20px;
  font-size: 0.95rem; font-weight: 600; color: var(--brand-primary);
  border-left: 3px solid var(--brand-sage); padding-left: 12px;
}
.hero .next-date { color: var(--brand-gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--brand-accent); color: var(--schiefer);
  font-weight: 700; font-size: 1.05rem;
  padding: 16px 34px; border-radius: 999px;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}
.btn:hover { background: var(--brand-accent-hover); transform: translateY(-1px); }
.btn-note { display: block; margin-top: 12px; font-size: 0.85rem; color: var(--muted-on-dark); }
.sec-light .btn-note, .sec-sand .btn-note { color: var(--muted-on-light); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; margin-top: 6px; }
.btn-secondary {
  display: inline-block; text-decoration: none;
  font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px;
  border: 1.5px solid var(--brand-sage); color: var(--brand-paper);
  background: transparent; transition: background 0.15s ease;
}
.btn-secondary:hover { background: rgba(131, 162, 162, 0.18); }
.sec-light .btn-secondary, .sec-sand .btn-secondary { color: var(--brand-ink); }
.sec-light .btn-secondary:hover, .sec-sand .btn-secondary:hover { background: rgba(131, 162, 162, 0.16); }

/* ---------- Karten-Raster ---------- */
.grid { display: grid; gap: 20px; margin-top: 34px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--weiss); border-radius: var(--radius);
  padding: 26px 24px; border: 1px solid var(--hairline);
}
.sec-dark .card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.card .num {
  font-family: var(--font-head); font-size: 1.6rem;
  color: var(--salbei-tief); margin-bottom: 8px;
}

/* ---------- Schmerz-Liste ---------- */
.pain-list { list-style: none; margin-top: 26px; max-width: 640px; }
.pain-list li {
  padding: 14px 0 14px 34px; position: relative;
  border-bottom: 1px solid var(--hairline);
}
.pain-list li::before { content: "•"; position: absolute; left: 8px; color: var(--brand-sage); font-weight: 700; }

/* ---------- 30-Minuten-Timeline ---------- */
.timeline { list-style: none; margin-top: 30px; max-width: 620px; }
.timeline li {
  display: flex; gap: 20px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--hairline);
}
.timeline .t-time {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
  color: var(--salbei-tief); min-width: 62px;
}
.timeline .t-label { font-size: 1.05rem; }

/* ---------- Salbei-Band ---------- */
.live-band { background: var(--brand-sage); color: var(--schiefer); }
.live-band .wrap { padding-top: 54px; padding-bottom: 54px; }
.live-band p {
  font-family: var(--font-head); font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1.3; max-width: 720px; font-weight: 600;
}

/* ---------- Termine ---------- */
.termine-list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.termine-list li {
  background: var(--weiss); border: 1px solid var(--hairline);
  border-radius: 999px; padding: 11px 20px;
  font-weight: 600; font-size: 0.98rem;
}
.termine-list li .t-day { color: var(--brand-sage); font-weight: 600; margin-right: 6px; }

/* ---------- Über-mich ---------- */
.about { display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: start; margin-top: 30px; }
.about .portrait {
  aspect-ratio: 4/5; border-radius: var(--radius);
  background: var(--weiss); border: 1px solid var(--hairline);
  overflow: hidden;
}
.about .portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ---------- Formular ---------- */
.signup-box {
  max-width: 480px; margin-top: 28px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius); padding: 26px 24px;
}
.form-box { max-width: 480px; }
.form-box label { display: block; font-size: 0.9rem; font-weight: 600; margin: 14px 0 6px; }
.form-box input {
  width: 100%; padding: 14px 16px; font-size: 1rem;
  border-radius: 10px; border: 1px solid var(--hairline);
  font-family: var(--font-body);
}
.form-box .btn { margin-top: 20px; width: 100%; text-align: center; }
.form-legal { font-size: 0.78rem; margin-top: 12px; color: var(--muted-on-dark); }
.form-hint { font-size: 0.86rem; color: var(--muted-on-dark); margin-top: 10px; }

.platzhalter {
  border: 2px dashed var(--brand-gold); border-radius: 10px;
  padding: 14px 16px; margin: 14px 0;
  font-size: 0.9rem; color: var(--brand-gold); background: rgba(245, 194, 104, 0.10);
}

/* ---------- Drei-Schritte-Zeile (Bestätigungsseite) ---------- */
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; max-width: 720px; }
.steps-row .step {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius); padding: 20px 18px;
}
.steps-row .step .num {
  font-family: var(--font-head); font-size: 1.3rem; color: var(--brand-gold); margin-bottom: 6px;
}

/* ---------- FAQ ---------- */
details { border-bottom: 1px solid var(--hairline); padding: 16px 0; }
summary { font-weight: 600; cursor: pointer; font-size: 1.05rem; list-style: none; position: relative; padding-right: 30px; }
summary::after { content: "+"; position: absolute; right: 4px; font-size: 1.3rem; color: var(--salbei-tief); }
details[open] summary::after { content: "–"; }
details p { margin-top: 10px; max-width: 620px; }

.cta-mid { margin-top: 38px; }

/* ---------- Footer ---------- */
footer {
  background: var(--brand-primary-deep); color: var(--muted-on-dark);
  padding: 34px 0; font-size: 0.85rem;
}
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
footer a { color: inherit; }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.card { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(51, 60, 59, 0.10); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn { transition: none; }
}

/* ---------- Mobil ---------- */
@media (max-width: 800px) {
  section { padding: 52px 0; }
  .hero { padding: 60px 0 54px; }
  .grid-3 { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about .portrait { max-width: 240px; }
  .steps-row { grid-template-columns: 1fr; }
}

/* ---------- Rechtstext (Impressum, Datenschutz) ---------- */
.legal-text { max-width: 640px; }
.legal-text h2 { margin-top: 2.8rem; margin-bottom: 0.5em; }
.legal-text h3 { margin-top: 1.8rem; margin-bottom: 0.4em; }
.legal-text > :first-child { margin-top: 0; }
.legal-text p { line-height: 1.6; margin-bottom: 1rem; }
.legal-text a { color: var(--schiefer); text-decoration: underline; }
