/* =========================================================
   Heute wird gut — Podcast Website
   Eine Datei, kein Build-Schritt. Mobile-first.
   ========================================================= */

:root {
  /* Farben — abgeleitet vom Cover (Sonnenaufgang über dem Meer) */
  --navy:        #1f2d4d;   /* Haupttext, aus dem Cover-Titel */
  --navy-soft:   #3a486a;
  --slate:       #6b7791;   /* gedämpfter Text */
  --cream:       #fdf3e6;   /* warmer Hintergrund */
  --cream-deep:  #fbe7d0;   /* Hero-Verlauf unten */
  --peach:       #fbd9b4;
  --card:        #ffffff;
  --line:        #efe2d0;   /* feine Trennlinien */

  /* Warme Akzentfarbe */
  --accent:      #ef8a4c;
  --accent-deep: #e1733a;
  --accent-soft: #fceadb;

  /* Typografie */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Maße */
  --maxw: 1080px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px -22px rgba(31, 45, 77, 0.35);
  --shadow-sm: 0 8px 26px -16px rgba(31, 45, 77, 0.3);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
p { margin: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }

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

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 14px 32px -12px rgba(239, 138, 76, 0.7);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -12px rgba(239, 138, 76, 0.75);
}
.btn .ico { width: 22px; height: 22px; flex: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(120% 90% at 50% 0%, var(--cream) 0%, var(--cream) 45%, var(--cream-deep) 100%);
  padding: 64px 0 72px;
  overflow: hidden;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 44px;
  align-items: center;
  text-align: center;
}
.hero-text { max-width: 560px; }
.hero h1 {
  font-size: clamp(3rem, 13vw, 4.6rem);
  margin: 0 0 18px;
}
.hero .lead {
  font-size: clamp(1.15rem, 4.5vw, 1.45rem);
  color: var(--navy-soft);
  font-weight: 500;
  margin-bottom: 34px;
  text-wrap: balance;
}
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-cta .note { font-size: 0.92rem; color: var(--slate); }

.cover {
  position: relative;
  width: min(82vw, 380px);
}
.cover img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Sektionen ---------- */
section { padding: 76px 0; }
.section-head { margin-bottom: 40px; max-width: 640px; }
.section-head h2 { font-size: clamp(2rem, 7vw, 2.7rem); }

/* Über */
.about p {
  font-size: clamp(1.1rem, 4vw, 1.3rem);
  color: var(--navy-soft);
  max-width: 680px;
}
.about p + p { margin-top: 20px; }

/* Episoden */
.episodes { background: var(--cream); }
.ep-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.ep {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 18px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding-left 0.18s ease, background 0.18s ease;
}
.ep:hover {
  background: var(--accent-soft);
  padding-left: 16px;
  padding-right: 16px;
  border-radius: var(--radius-sm);
  border-bottom-color: transparent;
}
.ep-num {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--accent-deep);
  font-size: 0.95rem;
  width: 42px;
  flex: none;
}
.ep-main { flex: 1 1 280px; }
.ep-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 2px; }
.ep-date { font-size: 0.92rem; color: var(--slate); }
.ep-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent-deep);
  font-size: 0.98rem;
}
.ep-go svg { width: 18px; height: 18px; transition: transform 0.18s ease; }
.ep:hover .ep-go svg { transform: translateX(4px); }

.ep-hint {
  margin-top: 28px;
  font-size: 0.95rem;
  color: var(--slate);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: #cdd5e6;
  padding: 54px 0;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.footer-brand { font-weight: 800; font-size: 1.3rem; color: #fff; letter-spacing: -0.02em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a {
  text-decoration: none;
  color: #cdd5e6;
  font-weight: 600;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--accent); }
.footer-meta { font-size: 0.88rem; color: #8a96b3; }

/* ---------- Impressum-Seite ---------- */
.legal { padding: 80px 0 100px; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 30px;
}
.legal h1 { font-size: clamp(2.2rem, 8vw, 3rem); margin-bottom: 36px; }
.legal h2 {
  font-size: 1.25rem;
  margin: 40px 0 10px;
  font-weight: 700;
}
.legal p { color: var(--navy-soft); max-width: 680px; }
.legal .ph { color: var(--slate); font-style: italic; }

/* ---------- Desktop ---------- */
@media (min-width: 760px) {
  body { font-size: 19px; }
  .hero { padding: 88px 0 96px; }
  .hero { padding: 120px 0 128px; }
  .hero-text { max-width: 720px; }
  .hero-cta { flex-direction: row; align-items: center; gap: 20px; }
}
