/* =========================================================
   4 THE CREW PODCAST
   ========================================================= */

:root {
  --black: #000000;
  --yellow: #fedd00;
  --white: #ffffff;
  --gray: #999999;

  --dark-gray: #111111;
  --medium-gray: #1b1b1b;
  --border-gray: #2d2d2d;

  --max-width: 1200px;
}

/* =========================================================
   RESET
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   GENERAL
   ========================================================= */

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.eyebrow {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 50px;
}

.section-heading h2,
.about-section h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-heading p {
  color: var(--gray);
  font-size: 1.05rem;
}

/* =========================================================
   NAVBAR
   ========================================================= */

.site-header {
  background-color: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--border-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-logo {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--yellow);
}

html {
  scroll-behavior: smooth;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(254, 221, 0, 0.08), transparent 40%),
    var(--black);
}

.hero-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
  padding: 80px 0;
}

.hero-logo-wrapper {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(100%, 460px);
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.5));
}

.hero-text h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.hero-text h1 span {
  color: var(--yellow);
  display: block;
}

.hero-description {
  color: #d7d7d7;
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 15px;
}

.episode-frequency {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border: 2px solid var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background-color: var(--yellow);
  color: var(--black);
}

.button-primary:hover {
  background-color: var(--white);
  border-color: var(--white);
}

.button-secondary {
  background-color: transparent;
  color: var(--yellow);
}

.button-secondary:hover {
  background-color: var(--yellow);
  color: var(--black);
}

/* =========================================================
   LATEST EPISODE
   ========================================================= */

.latest-section {
  background-color: var(--dark-gray);
}

.episode-card {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  background-color: var(--black);
  border: 1px solid var(--border-gray);
  border-left: 6px solid var(--yellow);
  padding: 40px;
}

.episode-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.episode-badge {
  display: inline-block;
  align-self: flex-start;
  background-color: var(--yellow);
  color: var(--black);
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.episode-info h3 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.episode-info p {
  color: var(--gray);
  margin-bottom: 25px;
}

.text-link {
  color: var(--yellow);
  font-weight: 800;
}

.spotify-player iframe {
  border-radius: 12px;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-section {
  border-top: 1px solid var(--border-gray);
  border-bottom: 1px solid var(--border-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.about-copy {
  font-size: 1.1rem;
  color: #d4d4d4;
}

.about-copy p {
  margin-bottom: 22px;
}

/* =========================================================
   HOSTS
   ========================================================= */

.hosts-section {
  background-color: var(--dark-gray);
}

.host-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.host-card {
  background-color: var(--black);
  border: 1px solid var(--border-gray);
  padding: 30px;
  text-align: center;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.host-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
}

.host-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: var(--yellow);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
}

.host-card h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.host-card p {
  color: var(--gray);
}

/* =========================================================
   FOLLOW / PLATFORMS
   ========================================================= */

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.platform-card {
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--dark-gray);
  border: 1px solid var(--border-gray);
  padding: 0 25px;
  font-size: 1.1rem;
  font-weight: 800;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.platform-card:hover {
  background-color: var(--yellow);
  color: var(--black);
  transform: translateX(4px);
}

.arrow {
  color: var(--yellow);
  font-size: 1.5rem;
}

.platform-card:hover .arrow {
  color: var(--black);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  padding: 45px 0;
  border-top: 4px solid var(--yellow);
  background-color: var(--black);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 70px;
}

.footer-brand strong {
  text-transform: uppercase;
}

.footer-brand p,
.footer-note {
  color: var(--gray);
  font-size: 0.9rem;
}

.footer-note {
  max-width: 430px;
  text-align: right;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-content,
  .episode-card,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero-logo {
    width: 300px;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .host-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;

    padding: 10px 0;

    font-size: 1.1rem;
  }

  .nav-dropdown-menu {
    position: static;

    min-width: 0;

    border: none;
    border-left: 2px solid var(--yellow);

    margin-left: 10px;
    padding: 0 0 0 12px;

    opacity: 1;
    visibility: visible;

    transform: none;

    background: transparent;
  }

  .nav-dropdown-menu a {
    padding: 8px 0;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 70px 0;
  }

  .nav-brand span {
    font-size: 0.85rem;
  }

  .hero-text h1 {
    font-size: 3.4rem;
  }

  .episode-card {
    padding: 25px;
  }

  .host-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-note {
    text-align: left;
  }
}
/* =========================================================
   MOBILE MENU
   ========================================================= */

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--yellow);
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================================================
   NAVBAR SCROLL STATE
   ========================================================= */

.site-header {
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  background-color: rgba(0, 0, 0, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;

  width: 48px;
  height: 48px;

  border: none;
  background-color: var(--yellow);
  color: var(--black);

  font-size: 1.5rem;
  font-weight: 900;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;

  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--white);
}

/* =========================================================
   EPISODE SEARCH
   ========================================================= */

.episode-controls {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.episode-search {
  flex: 1;
  min-width: 240px;
  padding: 15px 18px;
  background-color: var(--dark-gray);
  color: var(--white);
  border: 1px solid var(--border-gray);
  font-size: 1rem;
}

.episode-search:focus {
  outline: 2px solid var(--yellow);
  border-color: var(--yellow);
}

.episode-search::placeholder {
  color: var(--gray);
}

/* =========================================================
   EPISODE ARCHIVE
   ========================================================= */

.episodes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.archive-episode-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;

  background-color: var(--dark-gray);
  border: 1px solid var(--border-gray);

  padding: 20px;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.archive-episode-card:hover {
  transform: translateY(-3px);
  border-color: var(--yellow);
}

.archive-episode-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;

  background-color: var(--dark-gray);
  border: 1px solid var(--border-gray);

  padding: 20px;

  align-items: start;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.episode-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
/* Episode artwork */

.episode-artwork {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
}

/* Episode information */

.episode-meta {
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.archive-episode-card h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.archive-episode-card p {
  color: var(--gray);
  margin-bottom: 18px;
}

/* Episode audio player */

.episode-actions {
  margin-top: auto;
}

.episode-actions audio {
  width: 100%;
  max-width: 520px;
}

/* Search result message */

.no-results {
  color: var(--gray);
  font-size: 1.1rem;
}

.episode-controls,
.episodes-grid {
  width: min(90%, var(--max-width));
  margin-left: auto;
  margin-right: auto;
}

.episode-controls {
  margin-bottom: 40px;
}
.episode-platforms {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.episode-platform-link {
  display: inline-block;

  padding: 9px 14px;

  border: 1px solid var(--yellow);

  color: var(--yellow);

  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.episode-platform-link:hover {
  background-color: var(--yellow);
  color: var(--black);
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {
  /* Mobile navigation */

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;

    background-color: var(--black);

    padding: 25px 5%;

    border-bottom: 1px solid var(--border-gray);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 10px 0;
    font-size: 1.1rem;
  }

  /* Episode archive */

  .archive-episode-card {
    grid-template-columns: 170px 1fr;
  }

  .episode-artwork {
    width: 170px;
    height: 170px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 650px) {
  .episode-controls {
    margin-bottom: 25px;
  }

  .archive-episode-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .episode-artwork {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .archive-episode-card h3 {
    font-size: 1.25rem;
  }
}

/* =========================================================
   SHOP
   ========================================================= */

.shop-hero {
  padding: 100px 0 70px;

  background:
    linear-gradient(120deg, rgba(254, 221, 0, 0.1), transparent 45%),
    var(--black);

  border-bottom: 1px solid var(--border-gray);
}

.shop-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 900px;
  margin-bottom: 25px;
}

.shop-hero h1 span {
  display: block;
  color: var(--yellow);
}

.shop-hero > .container > p:last-child {
  color: var(--gray);
  font-size: 1.15rem;
  max-width: 600px;
}

/* PRODUCT FEATURE */

.product-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* PRODUCT IMAGE */

.product-image-wrapper {
  background-color: var(--dark-gray);
  border: 1px solid var(--border-gray);
  min-height: 500px;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 60px;
}

.sticker-preview {
  background-color: var(--white);

  border-radius: 50%;

  width: min(100%, 400px);
  aspect-ratio: 1 / 1;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 25px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);

  transform: rotate(-3deg);

  transition: transform 0.25s ease;
}

.sticker-preview:hover {
  transform: rotate(0deg) scale(1.03);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* PRODUCT DETAILS */

.product-details h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-price {
  color: var(--yellow);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 25px;
}

.product-description {
  color: #d4d4d4;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* PRODUCT FEATURES */

.product-features {
  list-style: none;
  margin-bottom: 35px;
}

.product-features li {
  position: relative;

  padding-left: 24px;
  margin-bottom: 12px;

  color: var(--gray);
}

.product-features li::before {
  content: "•";

  position: absolute;
  left: 0;

  color: var(--yellow);
  font-size: 1.4rem;
  font-weight: 900;
}

/* PURCHASE AREA */

.product-purchase {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.product-purchase label {
  width: 100%;

  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;

  color: var(--yellow);
}

.quantity-select {
  min-height: 51px;

  padding: 0 18px;

  background-color: var(--dark-gray);
  color: var(--white);

  border: 1px solid var(--border-gray);

  font-size: 1rem;
}

.quantity-select:focus {
  outline: 2px solid var(--yellow);
}

.shop-button {
  cursor: pointer;
}

.checkout-note {
  margin-top: 15px;

  color: var(--gray);

  font-size: 0.85rem;
}

/* SUPPORT SECTION */

.shop-support-section {
  background-color: var(--dark-gray);

  border-top: 1px solid var(--border-gray);

  padding: 80px 0;
}

.shop-support-content {
  max-width: 750px;

  text-align: center;
}

.shop-support-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);

  text-transform: uppercase;

  line-height: 1;

  margin-bottom: 20px;
}

.shop-support-content > p:last-child {
  color: var(--gray);

  font-size: 1.05rem;
}

/* =========================================================
   SHOP RESPONSIVE
   ========================================================= */

@media (max-width: 850px) {
  .product-feature {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .product-image-wrapper {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .shop-hero {
    padding: 70px 0 50px;
  }

  .shop-hero h1 {
    font-size: 3rem;
  }

  .product-image-wrapper {
    padding: 35px;
  }

  .product-purchase {
    align-items: stretch;
  }

  .quantity-select {
    width: 90px;
  }
}

/* =========================================================
   NAV DROPDOWN
   ========================================================= */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: var(--white);

  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;

  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 6px;

  padding: 0;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;

  transform: translate(-50%, -6px);

  min-width: 240px;

  background-color: var(--black);
  border: 1px solid var(--border-gray);

  padding: 8px;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;

  z-index: 1000;
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;

  color: var(--white);
  font-size: 0.9rem;

  white-space: nowrap;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;

  transform: translate(-50%, 0);
}

/* =========================================================
   HOMEPAGE LATEST EPISODE
   ========================================================= */

.latest-section .episode-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
  padding: 42px;
}

.latest-section .episode-info {
  min-width: 0;
}

.latest-section .episode-info h3 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1.05;
  max-width: 760px;
  margin-bottom: 22px;
}

.latest-section .episode-info p {
  max-width: 700px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.latest-episode-artwork {
  display: flex;
  justify-content: center;
  align-items: center;
}

.latest-episode-artwork img {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.latest-section audio {
  width: 100%;
  max-width: 520px;
}

.latest-section .episode-platforms {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .latest-section .episode-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px;
  }

  .latest-section .episode-info h3 {
    font-size: clamp(1.8rem, 7vw, 2.7rem);
  }

  .latest-episode-artwork {
    order: -1;
  }

  .latest-episode-artwork img {
    max-width: 520px;
  }
}


/* =========================================================
   HOSTS / BEHIND THE MIC
   ========================================================= */

.host-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.host-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  text-align: center;

  padding: 28px 20px;

  background: transparent;

  border: 1px solid var(--border-gray);

  min-height: 280px;
}

.host-image {
  width: 150px;
  height: 150px;

  object-fit: cover;

  border-radius: 50%;
  border: 3px solid var(--yellow);

  margin-bottom: 18px;
}

.host-placeholder {
  width: 150px;
  height: 150px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--yellow);
  color: var(--black);

  font-size: 3rem;
  font-weight: 900;

  margin-bottom: 18px;
}

.host-card h3 {
  margin: 0 0 6px;
}

.host-card p {
  margin: 0;
}

@media (max-width: 1000px) {
  .host-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .host-grid {
    grid-template-columns: 1fr;
  }
}