/* ═══════════════════════════════════════════════
   FONTS
═══════════════════════════════════════════════ */
@font-face {
  font-family: 'Lemon Milk';
  src: url('LEMONMILK-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lemon Milk';
  src: url('LEMONMILK-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Lemon Milk';
  src: url('LEMONMILK-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lemon Milk';
  src: url('LEMONMILK-RegularItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Brother';
  src: url('Brother Home.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════ */
:root {
  --yellow:    #FFDE00;
  --blue:      #0D0DDE;
  --white:     #FFFFFF;
  --max-w:     1100px;
  --pad-x:     clamp(24px, 6vw, 100px);
  --pad-y:     clamp(72px, 12vh, 140px);
}

/* ═══════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
a:visited { color: inherit; }

/* ═══════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════ */
body {
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 400;
  background-color: var(--blue);
  color: var(--white);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════
   SHARED TYPOGRAPHY
═══════════════════════════════════════════════ */
h1, h2, h3 {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.93;
  letter-spacing: -0.02em;
}
em {
  font-style: italic;
}
.label {
  font-family: 'Brother', cursive;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}
.eyebrow {
  font-family: 'Brother', cursive;
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 20px;
  display: block;
}
.body-text {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.5;
  max-width: 660px;
  font-weight: 400;

}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.btn-yellow {
  background: var(--yellow);
  color: var(--blue);
  border: 2px solid var(--yellow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255);
}
.btn-ghost:hover {
  border-color: var(--white);
}

/* ═══════════════════════════════════════════════
   TEXTURE HELPER — applied to blue sections
═══════════════════════════════════════════════ */
.hero,
.episode,
.hosts,
.footer {
  position: relative;
  background-color: var(--blue);
  background-image:
    linear-gradient(rgba(13, 13, 222, 0.12), rgba(13, 13, 222, 0.12)),
    url('bg-ID.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: normal, luminosity;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(60px, 10vh, 120px) var(--pad-x);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-mascot {
  width: clamp(80px, 12vw, 160px);
  height: auto;
  margin-bottom: 28px;
}
.hero .eyebrow {
  color: var(--yellow);
}
.hero-title {
  font-size: clamp(3.8rem, 13vw, 11rem);
  color: var(--white);
  margin-bottom: 60px;
}
.hero-title em {
  color: var(--yellow);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ═══════════════════════════════════════════════
   ABOUT  (yellow)
═══════════════════════════════════════════════ */
.about {
  background-color: var(--yellow);
  color: var(--blue);
  padding: var(--pad-y) var(--pad-x);
}
.about .container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.about .label {
  color: var(--blue);
}
.about h2 {
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  margin-bottom: 36px;
  max-width: 820px;
  line-height: 0.95;
}

/* ═══════════════════════════════════════════════
   EPISODE
═══════════════════════════════════════════════ */
.episode {
  padding: var(--pad-y) var(--pad-x);
}
.episode .container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}
.episode .label {
  color: var(--white);
}
.episode h2 {
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  margin-bottom: 44px;
  line-height: 1.05;
}
.episode h2 em {
  color: var(--yellow);
}

/* Spotify/Apple/YouTube embed — drop iframe here when live */
.episode iframe {
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
}

.episode-coming {
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════
   HOSTS
═══════════════════════════════════════════════ */
.hosts {
  padding: var(--pad-y) var(--pad-x);
}
.hosts .container {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hosts .label {
  color: var(--white);
}
.hosts h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 72px;
}
.hosts h2 em {
  color: var(--yellow);
}
.hosts-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* Each host card: two-column grid */
.host-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.host-card--flipped .host-photo {
  order: 2;
}
.host-card--flipped .host-bio {
  order: 1;
}
.host-photo img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 4px;
}
.host-tag {
  font-family: 'Brother', cursive;
  font-size: 1.1rem;
  color: var(--yellow);
  display: block;
  margin-bottom: 10px;
}
.host-bio h3 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
  line-height: 1;
}
.host-bio p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.5;
  max-width: 480px;
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   COMMUNITY  (yellow)
═══════════════════════════════════════════════ */
.community {
  background-color: var(--yellow);
  color: var(--blue);
  padding: var(--pad-y) var(--pad-x);
}
.community .container {
  max-width: var(--max-w);
  margin: 0 auto;
}
.community .label {
  color: var(--blue);
}
.community h2 {
  font-size: clamp(3rem, 8vw, 7rem);
  margin-bottom: 52px;
}

.social-links {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--blue);
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 2px solid var(--blue);
  font-family: 'Lemon Milk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 3rem);
  text-transform: uppercase;
  color: var(--blue);
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}
.social-link:hover {
  color: var(--white);
}
.arrow {
  font-size: 0.65em;
  letter-spacing: 0;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.social-link:hover .arrow {
  transform: translateX(10px);
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  padding: 64px var(--pad-x);
  text-align: center;
}
.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}
.footer-mascot {
  width: 52px;
  height: auto;
}
.footer-name {
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
}
.footer-copy {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 860px) {
  .host-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .host-card--flipped .host-photo {
    order: 0;
  }
  .host-card--flipped .host-bio {
    order: 0;
  }
  .host-photo img {
    max-width: 280px;
    margin: 0 auto;
  }
  .hosts-grid {
    gap: 64px;
  }
}
@media (max-width: 540px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
  .social-link {
    font-size: 1.2rem;
    padding: 18px 0;
  }
}
