/* ═══════════════════════════════════════════════════════════
   RADIO ENGLAND — Globale Styles
   ═══════════════════════════════════════════════════════════ */

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

:root {
  --black:   #0a0a0a;
  --dark:    #111111;
  --card:    #161616;
  --border:  rgba(255,255,255,0.07);
  --gold:    #C8A255;
  --gold-lt: #E2C27A;
  --red:     #5C1018;
  --red-lt:  #7A1525;
  --cream:   #F5EFE0;
  --muted:   #888877;
  --white:   #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
}

a { color: inherit; }

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav-logo { height: 40px; width: auto; }
.nav-links {
  display: flex; gap: 32px; list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 8px 18px !important;
  border-radius: 6px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; color: var(--black) !important; }

/* ─── HERO (Startseite, groß) ─────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(200,162,85,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(139,26,26,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
          mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
}

.hero-logo {
  width: 180px; height: auto;
  margin-bottom: 36px;
  position: relative;
  filter: drop-shadow(0 0 40px rgba(200,162,85,0.3));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 16px;
  position: relative;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '──'; margin: 0 12px; opacity: 0.4;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 12px;
  position: relative;
}
.hero h1 .gold { color: var(--gold); }
.hero h1 .red  { color: var(--red-lt); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
}

.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
  position: relative;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: 8px;
  font-size: 0.88rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  border: 1px solid transparent;
}
.btn-spotify { background: #1DB954; color: #000; }
.btn-spotify:hover { background: #1ed760; transform: translateY(-2px); }

.btn-apple {
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  border-color: rgba(255,255,255,0.12);
}
.btn-apple:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }

.btn-youtube { background: #5C1018; color: #fff; }
.btn-youtube:hover { background: #450c13; transform: translateY(-2px); }

.btn-amazon { background: #FF9900; color: #000; }
.btn-amazon:hover { background: #ffaa22; transform: translateY(-2px); }

.btn-gold {
  background: var(--gold); color: var(--black);
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── MINI-HERO (Unterseiten, dezent) ─────────────── */
.mini-hero {
  padding: 140px 24px 56px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(200,162,85,0.08) 0%, transparent 70%),
    var(--black);
  border-bottom: 1px solid var(--border);
}
.mini-hero .mini-logo {
  height: 64px; width: auto; margin-bottom: 18px;
  filter: drop-shadow(0 0 24px rgba(200,162,85,0.25));
}
.mini-hero .mini-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 10px;
}
.mini-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
}

/* ─── STATS ─────────────────────────────────────── */
.stats {
  background: var(--black);
  padding: 36px 24px;
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 0;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}
.stat-item {
  text-align: center;
  padding: 16px 48px;
  border-right: 1px solid rgba(92,16,24,0.5);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 900;
  color: var(--gold);
  display: block;
}
.stat-label {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted);
  margin-top: 4px;
}

/* ─── SECTIONS ──────────────────────────────────── */
section { padding: 96px 24px; }
.container { max-width: 1080px; margin: 0 auto; }

.section-label {
  font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 48px;
}
.divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 2px; margin: 16px 0 48px;
}

/* ─── SPOTIFY PLAYER ──────────────────────────── */
.section-folgen { background: var(--dark); }
.spotify-embed {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.spotify-embed iframe {
  display: block; width: 100%; border: none;
}

/* ─── EPISODE GRID ────────────────────────────── */
.episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.episode-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.episode-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200,162,85,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.episode-info { padding: 20px 18px; }
.episode-num {
  font-size: 0.65rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 600;
  display: flex; align-items: center; justify-content: space-between;
}
.episode-num .badge-new {
  font-size: 0.6rem; background: var(--gold); color: var(--black);
  padding: 2px 8px; border-radius: 20px; font-weight: 700;
}
.episode-title {
  font-size: 0.95rem; font-weight: 600;
  margin: 10px 0 6px;
  line-height: 1.45;
  color: var(--cream);
}
.episode-date {
  font-size: 0.7rem; color: var(--muted); margin-top: 6px;
}
.episode-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  margin-top: 14px;
}
.episode-link:hover { color: var(--gold); }

/* "Alle Folgen ansehen" CTA */
.episodes-cta {
  text-align: center;
  margin-top: 40px;
}

/* ─── ABOUT ──────────────────────────────────── */
.section-about { background: var(--black); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.about-text p {
  font-size: 1rem; line-height: 1.8;
  color: rgba(245,239,224,0.8);
  margin-bottom: 20px;
}
.about-text strong { color: var(--gold); }

.milestones { }
.milestone {
  display: flex; gap: 20px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.milestone:last-child { border-bottom: none; }
.milestone-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(200,162,85,0.12);
  border: 1px solid rgba(200,162,85,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.milestone-text h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; }
.milestone-text p  { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* Host Cards */
.host-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px;
}
.host-card-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.host-photo-big {
  height: 200px; width: auto; object-fit: contain; display: block;
}
.host-card-info {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  width: 100%;
  margin-top: -1px;
}
.host-eyebrow {
  font-size: 0.68rem; color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 600; margin-bottom: 6px;
}
.host-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; margin-bottom: 4px;
}
.host-role { font-size: 0.78rem; color: var(--muted); margin-bottom: 14px; }
.host-bio { font-size: 0.88rem; line-height: 1.75; color: #f0ead8; }

/* ─── PLATFORMS ──────────────────────────────── */
.section-hoeren { background: var(--dark); }
.platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.platform-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-decoration: none;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  transition: all 0.2s;
  text-align: center;
  color: var(--cream);
}
.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.platform-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.platform-icon svg { width: 32px; height: 32px; }
.platform-name { font-weight: 700; font-size: 1rem; }
.platform-sub  { font-size: 0.75rem; color: var(--muted); }

.p-spotify { border-color: rgba(29,185,84,0.3); }
.p-spotify:hover { border-color: #1DB954; }
.p-spotify .platform-icon { background: rgba(29,185,84,0.12); }

.p-apple { border-color: rgba(252,60,68,0.3); }
.p-apple:hover { border-color: #fc3c44; }
.p-apple .platform-icon { background: rgba(252,60,68,0.12); }

.p-youtube { border-color: rgba(255,0,0,0.3); }
.p-youtube:hover { border-color: #5C1018; }
.p-youtube .platform-icon { background: rgba(255,0,0,0.12); }

.p-amazon { border-color: rgba(255,153,0,0.3); }
.p-amazon:hover { border-color: #FF9900; }
.p-amazon .platform-icon { background: rgba(255,153,0,0.12); }

/* ─── PARTNER / KOOPERATION ──────────────────── */
.section-partner { background: var(--black); }
.partner-intro {
  font-size: 1.05rem; line-height: 1.85;
  color: rgba(245,239,224,0.8);
  max-width: 680px; margin-bottom: 56px;
}
.reach-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 56px;
}
.reach-item {
  background: var(--card);
  border: 1px solid rgba(200,162,85,0.2);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}
.reach-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900; color: var(--gold);
}
.reach-label {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-top: 6px;
}
.partner-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 56px;
}
.partner-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px;
}
.partner-box h3 {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold);
  font-weight: 600; margin-bottom: 18px;
}
.partner-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.partner-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.9rem; line-height: 1.5;
  color: rgba(245,239,224,0.85);
}
.partner-list li::before {
  content: '→'; color: var(--gold); margin-top: 2px;
}
.milestones-banner {
  background: linear-gradient(135deg, rgba(200,162,85,0.07), rgba(92,16,24,0.12));
  border: 1px solid rgba(200,162,85,0.2);
  border-radius: 14px; padding: 32px; margin-bottom: 56px;
}
.milestones-banner h3 {
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold);
  font-weight: 600; margin-bottom: 24px;
}
.milestones-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.milestone-tile { text-align: center; padding: 16px; }
.milestone-tile .icon { font-size: 2rem; margin-bottom: 8px; }
.milestone-tile h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.milestone-tile p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ─── KONTAKT ────────────────────────────────── */
.section-kontakt { background: var(--black); }
.kontakt-inner {
  max-width: 640px; text-align: center; margin: 0 auto;
}
.kontakt-inner > p {
  color: rgba(245,239,224,0.7);
  font-size: 1rem; line-height: 1.8; margin-bottom: 36px;
}
.kontakt-cta {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gold); color: var(--black);
  font-weight: 700; font-size: 1rem;
  padding: 16px 32px; border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.kontakt-cta:hover { background: var(--gold-lt); transform: translateY(-2px); }
.kontakt-social {
  display: flex; justify-content: center; gap: 16px; margin-top: 28px;
  flex-wrap: wrap;
}
.kontakt-social a {
  color: var(--muted); text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.kontakt-social a:hover { color: var(--gold); }

/* ─── FOOTER ─────────────────────────────────── */
footer {
  background: #070707;
  border-top: 1px solid var(--border);
  padding: 48px 24px;
  text-align: center;
}
.footer-logo { height: 56px; margin-bottom: 24px; }
.footer-tagline {
  font-size: 0.85rem; color: var(--muted);
  margin-bottom: 28px;
}
.footer-social {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 8px;
  text-decoration: none; font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--border);
  color: var(--cream);
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-links {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  font-size: 0.75rem; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-copy {
  font-size: 0.72rem; color: #444;
}

/* ─── MOBILE ─────────────────────────────────── */
@media (max-width: 900px) {
  .reach-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-two-col { grid-template-columns: 1fr; }
  .milestones-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 18px; }
  .nav-links a:not(.nav-cta) {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }
  .about-grid { grid-template-columns: 1fr; }
  .host-cards-grid { grid-template-columns: 1fr; }
  .stat-item { padding: 12px 28px; }
  section { padding: 64px 20px; }
  .mini-hero { padding: 110px 20px 40px; }
}

@media (max-width: 480px) {
  .nav-links { gap: 12px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-cta { padding: 7px 14px !important; font-size: 0.78rem; }
}
