/* ============================================================
   podcast.css – werde-sturmfest.de / Podcast-Seite
   Standalone (kein styles.css der LP → keine Klassen-Kollision).
   Basis: podcast.html der Hauptsite, Fonts self-hosted (Fraunces/Inter),
   Palette = Sturmfest-CI (Bernstein/Creme + dunkles Podcast-Blau).
   ============================================================ */

/* ── FONTS – self-hosted (kein Google-Request, DSGVO), aus ../sturmfest-lp/fonts ── */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../sturmfest-lp/fonts/fraunces-latin-standard-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('../sturmfest-lp/fonts/fraunces-latin-standard-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../sturmfest-lp/fonts/inter-latin-wght-normal.woff2') format('woff2');
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  color-scheme: dark;
}
body.sturmfest-podcast-page {
  min-height: 100vh;
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  font-optical-sizing: auto;
}
.sturmfest-podcast-page img { max-width: 100%; }
.sturmfest-podcast-page a { color: inherit; }

/* Astra-Hover-Gold-Bleed neutralisieren (scoped, niedrige Spezifitaet) */
:where(.sturmfest-podcast-page) a:hover,
:where(.sturmfest-podcast-page) a:focus,
:where(.sturmfest-podcast-page) button:hover,
:where(.sturmfest-podcast-page) button:focus {
  color: inherit;
  background-color: transparent;
}

/* ── BASIS-VARIABLEN (kommen sonst aus shared.css) ── */
:root {
  --black:      #0A0A0A;
  --cream:      #F2EDE3;
  --gold:       #C8860A;
  --gold-hover: #daa520;
  --font-headline: 'Fraunces', 'Iowan Old Style', 'Palatino', Georgia, serif;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ========================================
   PODCAST – Seitenspezifische Styles
   ======================================== */

/* Podcast-spezifische Farbvariablen */
:root {
  --blue:     #2E4A62;
  --blue-dk:  #1a3147;
  --blue-xdk: #0f1e2a;
}

/* ── SLIM HEADER (Standalone) ── */
.pc-topbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 3rem;
}
.pc-wordmark {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; opacity: 0.85;
  transition: opacity 0.3s;
}
.pc-wordmark:hover { opacity: 1; }
.pc-topbar-cta {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border: 1px solid rgba(200,134,10,0.4); border-radius: 40px;
  padding: 8px 18px; transition: all 0.3s;
}
.pc-topbar-cta:hover { background: rgba(200,134,10,0.12); border-color: var(--gold); }

/* ── SHARED UTILITIES ── */
.eyebrow {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; display: block;
}
.eyebrow.light { color: rgba(242,237,227,0.45); }
.section-pad { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--blue-xdk) 0%, var(--blue-dk) 55%, #243d52 100%);
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center; gap: 3.5rem;
  padding: 140px 3rem 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(200,134,10,0.06) 0%, transparent 70%);
}

/* Waveform-Dekoration – neben der Headline */
.hero-waves {
  position: relative; z-index: 1; flex-shrink: 0; order: 2;
  display: flex; align-items: center; gap: 5px; opacity: 0.18;
}
.hero-waves span {
  display: block; width: 4px; border-radius: 2px; background: var(--cream);
  animation: wavePulse 1.4s ease-in-out infinite;
}
.hero-waves span:nth-child(1)  { height: 20px;  animation-delay: 0.0s; }
.hero-waves span:nth-child(2)  { height: 50px;  animation-delay: 0.1s; }
.hero-waves span:nth-child(3)  { height: 80px;  animation-delay: 0.2s; }
.hero-waves span:nth-child(4)  { height: 120px; animation-delay: 0.3s; }
.hero-waves span:nth-child(5)  { height: 160px; animation-delay: 0.4s; }
.hero-waves span:nth-child(6)  { height: 200px; animation-delay: 0.5s; }
.hero-waves span:nth-child(7)  { height: 240px; animation-delay: 0.6s; }
.hero-waves span:nth-child(8)  { height: 260px; animation-delay: 0.7s; }
.hero-waves span:nth-child(9)  { height: 240px; animation-delay: 0.8s; }
.hero-waves span:nth-child(10) { height: 200px; animation-delay: 0.9s; }
.hero-waves span:nth-child(11) { height: 160px; animation-delay: 1.0s; }
.hero-waves span:nth-child(12) { height: 120px; animation-delay: 1.1s; }
.hero-waves span:nth-child(13) { height: 80px;  animation-delay: 1.2s; }
.hero-waves span:nth-child(14) { height: 50px;  animation-delay: 1.3s; }
.hero-waves span:nth-child(15) { height: 20px;  animation-delay: 1.4s; }
@keyframes wavePulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.5; transform: scaleY(0.6); }
}

.hero-inner { max-width: 640px; position: relative; z-index: 1; order: 1; }
.hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400; color: var(--cream); line-height: 1;
  margin-bottom: 12px;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,237,227,0.4); margin-bottom: 32px; display: block;
}
.hero-text {
  font-family: var(--font-body); font-size: 1.1rem; font-weight: 300;
  color: rgba(242,237,227,0.7); line-height: 1.85;
  max-width: 560px; margin-bottom: 48px;
}

/* Platform-Badges */
.platform-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.platform-badge {
  display: inline-flex; align-items: center;
  padding: 10px 20px;
  background: rgba(242,237,227,0.08);
  border: 1px solid rgba(242,237,227,0.15);
  border-radius: 40px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  color: var(--cream); text-decoration: none;
  transition: all 0.3s;
}
.platform-badge:hover {
  background: rgba(242,237,227,0.14);
  border-color: rgba(242,237,227,0.3);
}

.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--gold); color: var(--black);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s;
}
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }

/* ── QUOTE BAND ── */
.quote-band {
  background: rgba(200,134,10,0.08);
  border-top: 1px solid rgba(200,134,10,0.2);
  border-bottom: 1px solid rgba(200,134,10,0.2);
  padding: 60px 0;
}
.quote-band blockquote {
  max-width: 820px; margin: 0 auto; text-align: center;
  font-family: var(--font-headline); font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--black); line-height: 1.4;
}
.quote-band cite {
  display: block; margin-top: 20px;
  font-family: var(--font-body); font-style: normal;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(10,10,10,0.45);
}
.quote-band-inner { padding: 0 3rem; }

/* ── ABOUT PODCAST ── */
.about-podcast { background: var(--black); color: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-text h2 {
  font-family: var(--font-headline); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--cream); line-height: 1.1;
  margin-bottom: 28px;
}
.about-text p {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  color: rgba(242,237,227,0.65); line-height: 1.9;
  margin-bottom: 20px;
}

/* Podcast Cover */
.podcast-cover {
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, var(--blue-xdk) 0%, var(--blue-dk) 50%, var(--blue) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; gap: 20px;
  position: relative; overflow: hidden;
}
.podcast-cover::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 30%, rgba(200,134,10,0.12) 0%, transparent 70%);
}
.podcast-cover img {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.podcast-cover-inner { position: relative; z-index: 1; }
.podcast-cover-title {
  font-family: var(--font-headline); font-size: 2.8rem;
  color: var(--cream); font-weight: 400; line-height: 1;
  margin-bottom: 8px;
}
.podcast-cover-sub {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(242,237,227,0.4);
}
.podcast-cover-name {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 400;
  color: var(--gold); margin-top: 20px;
}

/* Episode Streaming-Buttons */
.ep-stream { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ep-stream a {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(242,237,227,0.18);
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(242,237,227,0.6); text-decoration: none;
  transition: all 0.25s;
}
.ep-stream a:hover {
  border-color: rgba(200,134,10,0.5);
  color: var(--gold);
}

/* ── EPISODE-VIDEO (YouTube-Facade) ── */
.ep-video-placeholder {
  position: relative; margin: 18px 0 4px;
  aspect-ratio: 16 / 9; width: 100%;
  background: #000; overflow: hidden; cursor: pointer;
}
.ep-video-placeholder img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; opacity: 0.82; transition: opacity 0.3s;
}
.ep-video-placeholder:hover img { opacity: 1; }
.ep-video-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
}
.ep-video-placeholder-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(200,134,10,0.92); color: #0A0A0A;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.ep-video-placeholder:hover .ep-video-placeholder-icon { transform: scale(1.08); }
.ep-video-placeholder-label {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

/* ── EPISODES ── */
.episodes { background: #0d0d0d; }
.episodes h2 {
  font-family: var(--font-headline); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--cream);
  margin-bottom: 16px;
}
.episodes-intro {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 300;
  color: rgba(242,237,227,0.5); line-height: 1.7;
  max-width: 520px; margin-bottom: 60px;
}

.ep-list { display: flex; flex-direction: column; gap: 2px; }
.ep-card {
  background: rgba(242,237,227,0.03);
  border: 1px solid rgba(242,237,227,0.07);
  padding: 36px 40px;
  display: grid; grid-template-columns: 56px 1fr auto;
  gap: 28px; align-items: start;
  transition: background 0.3s, border-color 0.3s;
}
.ep-card:hover {
  background: rgba(242,237,227,0.06);
  border-color: rgba(200,134,10,0.25);
}
.ep-num {
  font-family: var(--font-headline); font-size: 2rem;
  color: rgba(200,134,10,0.35); line-height: 1;
  padding-top: 4px;
}
.ep-tag {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 10px;
}
.ep-title {
  font-family: var(--font-headline); font-size: 1.3rem;
  color: var(--cream); font-weight: 400; line-height: 1.25;
  margin-bottom: 12px;
}
.ep-desc {
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 300;
  color: rgba(242,237,227,0.5); line-height: 1.75;
}
.ep-song {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 400;
  color: rgba(200,134,10,0.7); margin-top: 14px;
  display: flex; align-items: center; gap: 6px;
}
.ep-song::before { content: '♪'; }
.ep-badge {
  flex-shrink: 0;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  white-space: nowrap;
}
.ep-badge.coming {
  background: rgba(200,134,10,0.12);
  border: 1px solid rgba(200,134,10,0.3);
  color: var(--gold);
}
.ep-badge.pilot {
  background: rgba(46,74,98,0.4);
  border: 1px solid rgba(46,74,98,0.7);
  color: rgba(242,237,227,0.7);
}
.ep-badge.online {
  background: rgba(61,92,58,0.45);
  border: 1px solid rgba(120,160,90,0.6);
  color: #bcd9a4;
}

/* ── COMING SOON BAND ── */
.coming-soon-band {
  background: linear-gradient(135deg, var(--blue-xdk) 0%, var(--blue-dk) 100%);
  padding: 80px 0; text-align: center;
}
.coming-soon-band h3 {
  font-family: var(--font-headline); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--cream); margin-bottom: 16px;
}
.coming-soon-band p {
  font-family: var(--font-body); font-size: 1rem; font-weight: 300;
  color: rgba(242,237,227,0.6); line-height: 1.7;
  max-width: 480px; margin: 0 auto 36px;
}
.platform-row.centered { justify-content: center; }

/* ── PAGE NEWSLETTER ── */
.newsletter { background: var(--cream); padding: 100px 0; }
.newsletter-inner { text-align: center; max-width: 560px; margin: 0 auto; padding: 0 1.5rem; }
.newsletter h2 {
  font-family: var(--font-headline); font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400; color: var(--black); margin-bottom: 16px; line-height: 1.1;
}
.newsletter p {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 300;
  color: rgba(10,10,10,0.6); line-height: 1.8; margin-bottom: 36px;
}
/* Formular = Landingpage-Pill-Kapsel (.sf-warteliste-form): Input links rund,
   Button rechts rund, nahtlos zusammengeschoben, Bernstein-Button mit Glanz-Sweep. */
.form-row { display: flex; width: 100%; max-width: 440px; margin: 0 auto; }
.form-row input[type="email"] {
  flex: 1; min-width: 0; box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(46, 74, 98, 0.25); border-right: none;
  border-radius: 999px 0 0 999px;
  color: var(--black); font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 300;
  padding: 0.8em 1.2em; outline: none;
  transition: border-color 0.3s;
}
.form-row input[type="email"]::placeholder { color: rgba(10,10,10,0.4); }
.form-row input[type="email"]:focus { border-color: var(--gold); }
.form-row button {
  flex: 0 0 auto; position: relative; overflow: hidden;
  background: var(--gold); color: #161E26; border: none;
  border-radius: 0 999px 999px 0 !important;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 600;
  padding: 0.8em 1.4em; cursor: pointer; white-space: nowrap;
  transition: background 0.3s;
}
.form-row button:hover { background: #B4770A; }
.form-row button:disabled { opacity: 0.6; cursor: default; }
/* Glanz-Sweep – analog LP (@keyframes sfShine): weißer Diagonal-Streifen alle 6s. */
.form-row button::after {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.5) 50%, transparent 80%);
  transform: translateX(-180%) skewX(-20deg);
  animation: sfShine 6s ease-in-out 2s infinite;
  pointer-events: none;
}
@keyframes sfShine {
  0%   { transform: translateX(-180%) skewX(-20deg); }
  22%  { transform: translateX(320%) skewX(-20deg); }
  100% { transform: translateX(320%) skewX(-20deg); }
}
@media (prefers-reduced-motion: reduce) {
  .form-row button::after { animation: none; }
}
.form-note {
  font-family: var(--font-body); font-size: 0.72rem;
  color: rgba(10,10,10,0.35); margin-top: 12px; line-height: 1.6;
}
/* Inline Success/Error (analog LP .mc-success / .mc-error) */
.pc-nl-success {
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 400;
  color: var(--gold); padding: 0.75rem 0; line-height: 1.5;
}
.pc-nl-error {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 400;
  color: #8C3A2E; margin-top: 0.5rem; line-height: 1.5;
}

/* ── PAGE FOOTER (minimal, legal) ── */
.pc-footer {
  background: var(--black); text-align: center;
  padding: 44px 1.5rem;
  border-top: 1px solid rgba(242,237,227,0.08);
}
.pc-footer a {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 400;
  color: rgba(242,237,227,0.45); text-decoration: none;
  transition: color 0.3s;
}
.pc-footer a:hover { color: var(--gold); }
.pc-footer-sep { color: rgba(242,237,227,0.25); margin: 0 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .ep-card { grid-template-columns: 1fr; padding: 28px 24px; }
  .ep-num { display: none; }
  .ep-badge { display: none; }
  .hero-waves { display: none; }
  .hero { padding: 130px 1.5rem 80px; }
  .container { padding: 0 1.5rem; }
  .section-pad { padding: 72px 0; }
  .pc-topbar { padding: 20px 1.5rem; }
}
