/* ============================================
   Power Plays Podcast — Stylesheet
   Inspired by lucyfshaw.com aesthetic
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #FAFAF8;
  --color-card: #FFFFFF;
  --color-dark: #1A1A1A;
  --color-text: #3D3D3D;
  --color-muted: #7A7A7A;
  --color-border: #E8E6E1;
  --color-accent: #7C3AED;
  --color-accent-light: #14B8A6;
  --color-spotify: #1DB954;
  --color-apple: #8B5CF6;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'DM Serif Display', 'Georgia', serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(44, 10, 90, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  height: var(--nav-height);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.825rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: #6D28D9;
  transform: translateY(-1px);
}

.nav-cta-contact {
  background: transparent !important;
  color: var(--color-accent) !important;
  border: 2px solid var(--color-accent);
}

.nav-cta-contact:hover {
  background: var(--color-accent) !important;
  color: #fff !important;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Sections --- */
.section {
  padding: 96px 0;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: url('images/Power Plays-062-240326.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 10, 25, 0.7) 0%,
    rgba(15, 10, 25, 0.5) 40%,
    rgba(15, 10, 25, 0.25) 70%,
    rgba(15, 10, 25, 0.35) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 20px) 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  min-height: 85vh;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  color: #FFFFFF;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 460px;
}

.hero-subscribe {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-subscribe .btn {
  min-width: 200px;
  justify-content: center;
}

.face-img.placeholder img {
  display: none;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-spotify {
  background: var(--color-spotify);
  color: #fff;
}

.btn-spotify:hover {
  background: #1aa34a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(29, 185, 84, 0.3);
}

.btn-apple {
  background: var(--color-apple);
  color: #fff;
}

.btn-apple:hover {
  background: #7C3AED;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.35);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 10px;
}


/* --- About --- */
.about {
  border-bottom: 1px solid var(--color-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
}

/* --- Episodes --- */
.episodes {
  background: var(--color-card);
}

.episode-platforms {
  display: flex;
  gap: 20px;
}

.episode-platforms a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  transition: color 0.2s;
}

.episode-platforms a:hover {
  color: var(--color-dark);
}

.episodes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 48px;
}

.episode-card {
  display: flex;
  gap: 20px;
  padding: 28px 24px;
  background: var(--color-card);
  transition: background 0.2s;
  text-decoration: none;
}

.episode-card:hover {
  background: #F8F5FE;
}

.episode-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-border);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  transition: color 0.2s;
}

.episode-card:hover .episode-number {
  color: var(--color-accent);
}

.episode-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.episode-info p {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.episode-meta {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.embed-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 20px;
}

.embed-player {
  max-width: 700px;
  margin: 0 auto;
}

/* --- Hosts --- */
.hosts {
  border-top: 1px solid var(--color-border);
}

.hosts .section-title {
  margin-bottom: 56px;
}

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.host-card {
  display: flex;
  flex-direction: column;
}

.host-img {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-border);
  margin-bottom: 24px;
  position: relative;
}

.host-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.host-img .img-lucy {
  object-position: center 25%;
  transform: scale(1.4);
  transform-origin: center 25%;
}

.host-img.placeholder img {
  display: none;
}

.host-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 4rem;
  align-items: center;
  justify-content: center;
}

.host-img.placeholder .host-placeholder {
  display: flex;
}

.host-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.host-role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.host-info p:last-child {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.7;
}

/* --- Gallery --- */
.gallery {
  background: var(--color-card);
  border-top: 1px solid var(--color-border);
}

.gallery .section-title {
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-border);
  position: relative;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.gallery-item.placeholder img {
  display: none;
}

.gallery-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #EDE9FE 0%, #CCFBF1 100%);
  color: var(--color-muted);
  font-size: 0.875rem;
  font-weight: 500;
  align-items: center;
  justify-content: center;
}

.gallery-item.placeholder .gallery-placeholder {
  display: flex;
}

/* --- CTA --- */
.cta {
  border-top: 1px solid var(--color-border);
}

.cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--color-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-inner p {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Contact --- */
.contact {
  border-top: 1px solid var(--color-border);
}

.contact-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-inner p {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.btn-primary {
  background: var(--color-dark);
  color: #fff;
}

.btn-primary:hover {
  background: #1a1a2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* --- Footer --- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-dark);
  display: block;
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-dark);
}

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children in grid */
.episodes-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.episodes-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.episodes-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.episodes-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.episodes-grid .reveal:nth-child(6) { transition-delay: 0.25s; }
.episodes-grid .reveal:nth-child(7) { transition-delay: 0.3s; }

/* --- Mobile Responsive --- */
@media (max-width: 900px) {
  .hero {
    min-height: 70vh;
  }

  .hero-inner {
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hosts-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    min-height: 60vh;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-heading {
    font-size: 1.6rem;
  }

  .episodes-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner h2 {
    font-size: 2rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .host-img {
    height: 300px;
  }
}
