/* ════════════════════════════════════════════
   podcast.css
   Styles for /podcast/index.html
   Depends on: global.css
════════════════════════════════════════════ */

:root {
  --page-x: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 8vw, 7rem);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.pod-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
}

/* ── Background image (replaces video — swap to video element when ready) ── */
.pod-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  z-index: 0;
  pointer-events: none;
}

/* ── Dark overlay ── */
.pod-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(19, 37, 36, 0.3) 0%,
    rgba(19, 37, 36, 0.5) 50%,
    rgba(19, 37, 36, 0.88) 100%
  );
}

/* ── Hero content ── */
.pod-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--page-x) 4rem;
  color: var(--cream);
  max-width: 900px;
}

.pod-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(254, 254, 240, 0.4);
  margin-bottom: 1.5rem;
}

.eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(254, 254, 240, 0.3);
  flex-shrink: 0;
}

.pod-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4rem, 12vw, 11rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.pod-dot {
  color: var(--teal);
}

.pod-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: rgba(254, 254, 240, 0.6);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 3rem;
}

/* ── Platform buttons ── */
.pod-platform-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.pod-platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid rgba(254, 254, 240, 0.25);
  color: var(--cream);
  transition: all 0.25s;
  white-space: nowrap;
}

.pod-platform-btn:hover {
  border-color: var(--cream);
  background: rgba(254, 254, 240, 0.08);
}

/* Spotify — green accent on hover */
.pod-platform-btn--spotify:hover {
  border-color: #1DB954;
  color: #1DB954;
}

/* Apple — pink accent on hover */
.pod-platform-btn--apple:hover {
  border-color: #fc3c44;
  color: #fc3c44;
}

/* YouTube — red accent on hover */
.pod-platform-btn--youtube:hover {
  border-color: #FF0000;
  color: #FF0000;
}

.platform-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.platform-label {
  line-height: 1;
}

/* ── Scroll nudge ── */
.pod-scroll-nudge {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem var(--page-x) 2rem;
  color: rgba(254, 254, 240, 0.25);
  font-family: 'DM Mono', monospace;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.pod-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(254, 254, 240, 0.2);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.pod-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(254, 254, 240, 0.5);
  animation: scanLine 2.2s linear 1s infinite;
}

@keyframes scanLine {
  to { left: 200%; }
}

/* ══════════════════════════════════════════
   ABOUT / DESCRIPTION
══════════════════════════════════════════ */
.pod-about {
  padding: var(--section-y) var(--page-x);
  border-bottom: 1px solid rgba(19, 37, 36, 0.1);
}

.pod-about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.pod-about-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-top: 1rem;
}

.pod-about-body {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  opacity: 0.7;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.pod-about-body:last-of-type {
  margin-bottom: 0;
}

/* Text links below description */
.pod-about-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(19, 37, 36, 0.1);
}

.pod-text-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.pod-text-link:hover {
  opacity: 1;
}

/* ══════════════════════════════════════════
   BOTTOM CTA
══════════════════════════════════════════ */
.pod-cta {
  background: var(--ink);
  color: var(--cream);
  padding: var(--section-y) var(--page-x);
  position: relative;
  overflow: hidden;
}

/* Texture overlay */
.pod-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/bent_tile_pattern.png');
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0.07;
  filter: invert(1);
  pointer-events: none;
}

.pod-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.pod-cta-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.pod-cta-body {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  opacity: 0.55;
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.pod-cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Invert buttons for dark background */
.pod-cta .btn-primary {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.pod-cta .btn-primary:hover {
  background: transparent;
  color: var(--cream);
}

.pod-cta .btn-ghost {
  color: var(--cream);
  border-color: rgba(254, 254, 240, 0.35);
}

.pod-cta .btn-ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .pod-about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pod-platform-links {
    gap: 0.5rem;
  }
}

@media (max-width: 600px) {
  :root {
    --page-x: 1.25rem;
    --section-y: 3.5rem;
  }

  .pod-hero-title {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .pod-cta-title {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .pod-platform-btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.55rem;
  }

  .pod-scroll-nudge {
    display: none;
  }
}
