/* ============================================================
   CLASSIC TV PAKISTAN — CINEMATIC NETFLIX HERO BILLBOARD
   ============================================================ */

.hero-billboard {
  position: relative;
  width: 100%;
  min-height: 520px;
  max-height: 76vh;
  overflow: hidden;
  background: var(--bg-deep, #060b08);
  touch-action: pan-y;
  user-select: none;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-slide.active .hero-backdrop {
  animation: heroZoom 8s ease-in-out forwards;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 25%, transparent 50%),
    linear-gradient(90deg, rgba(0,0,0,0.5) 0%, transparent 50%);
  pointer-events: none;
}

.hero-foreground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 40px 5% 48px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-title {
  font-family: var(--font-serif, 'Cinzel', serif);
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.6);
}

.hero-urdu {
  font-family: var(--font-urdu, 'Noto Nastaliq Urdu', serif);
  font-size: clamp(18px, 2.8vw, 30px);
  color: var(--gold, #f5c542);
  direction: rtl;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9), 0 0 20px rgba(245, 197, 66, 0.2);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.hero-btn-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #060b08;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 28px;
  border-radius: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  text-decoration: none;
}

.hero-btn-play:hover {
  background: var(--gold, #f5c542);
  color: #060b08;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 197, 66, 0.4);
}

.hero-btn-mylist {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 11px 20px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
}

.hero-btn-mylist:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Hero Slider Controls */
.hero-dots {
  position: absolute;
  bottom: 18px;
  right: 5%;
  z-index: 20;
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--gold, #f5c542);
  border-color: var(--gold, #f5c542);
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(245, 197, 66, 0.5);
}

.hero-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.6);
}

/* Hero Slider Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  backdrop-filter: blur(8px);
}

.hero-billboard:hover .hero-arrow {
  opacity: 1;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  color: var(--gold, #f5c542);
}

.hero-arrow.left { left: 2%; }
.hero-arrow.right { right: 2%; }

/* ============================================================
   MOBILE RESPONSIVE HERO (SCREEN <= 850px)
   ============================================================ */
@media (max-width: 850px) {
  .hero-billboard {
    min-height: 320px;
    max-height: 400px;
  }

  .hero-slides {
    min-height: 320px;
  }

  .hero-backdrop {
    background-position: center 15%;
  }

  .hero-vignette {
    background:
      linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 30%, transparent 55%),
      linear-gradient(90deg, rgba(0,0,0,0.4) 0%, transparent 50%);
  }

  .hero-foreground {
    padding: 0 16px 14px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.15;
  }

  .hero-urdu {
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 8px;
  }

  .hero-btn-play {
    padding: 9px 20px;
    font-size: 13px;
  }

  .hero-btn-mylist {
    padding: 8px 14px;
    font-size: 12px;
  }

  .hero-dots {
    bottom: auto;
    top: 12px;
    right: 12px;
    gap: 6px;
  }

  .hero-dot {
    width: 7px;
    height: 7px;
  }

  .hero-arrow {
    display: none !important;
  }
}
