/* Scoped Styles for Modern Welcome Page */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;500;600;700&display=swap");

body {
  background-color: #141414 !important; /* Force dark background */
}

/* Base Wrapper */
.welcome-modern-container {
  background-color: #141414;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  padding-bottom: 50px;
}

.welcome-modern-container h1,
.welcome-modern-container h2,
.welcome-modern-container h3,
.welcome-modern-container h4 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  margin: 0;
}

/* Utilities */
.text-gold {
  color: #d4af37 !important;
}
.bg-gold {
  background-color: #d4af37 !important;
}
.btn-gold {
  background-color: #d4af37;
  color: #000;
  border: none;
  padding: 10px 24px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 4px;
}
.btn-gold:hover {
  background-color: #fff;
  color: #d4af37;
  transform: scale(1.05);
}
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 4px;
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

/* HERO SECTION */
.hero-wrapper {
  position: relative;
  height: 80vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to top, #141414 10%, rgba(20,20,20,0.8) 50%, rgba(20,20,20,0.4) 100%); */
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-left: 5%;
  max-width: 600px;
}
.hero-title {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}
.hero-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #e5e5e5;
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  display: block; /* Ensure it takes space */
}
.hero-actions {
  display: flex;
  gap: 15px;
}

/* CONTENT ROWS */
.content-section {
  padding: 40px 0;
  position: relative;
  z-index: 10;
}
.section-header {
  padding: 0 5%;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.section-title {
  font-size: 2rem;
  color: #e5e5e5;
}
.section-link {
  font-size: 0.9rem;
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}

/* SLIDERS (CSS Only horizontal scroll) */
.netflix-slider {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 20px 5%;
  scroll-behavior: smooth;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.netflix-slider::-webkit-scrollbar {
  display: none;
}
.slide-item {
  flex: 0 0 auto;
  width: 200px; /* Default width */
  transition:
    transform 0.3s ease,
    z-index 0.3s ease;
  cursor: pointer;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

/* Specific Aspect Ratios */
.movie-poster {
  width: 200px;
  height: 300px; /* 2:3 Ratio */
}
.music-cover {
  width: 250px;
  height: 250px; /* 1:1 Ratio */
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: opacity 0.3s;
}
.slide-item:hover {
  transform: scale(1.1);
  z-index: 20;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease;
}
.slide-item:hover .slide-info {
  opacity: 1;
}

/* PREMIUM CONTENT STYLING */
.premium-movie-item {
  border: 2px solid #d4af37;
  position: relative;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}
.premium-movie-item:hover {
  border-color: #ffed4e;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}
.premium-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #8b4513;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border: 1px solid #d4af37;
}

/* NOLLYWOOD CLASSICS STYLING */
.classics-slider {
  background: linear-gradient(
    to right,
    rgba(139, 69, 19, 0.1),
    rgba(139, 69, 19, 0.05)
  );
  border-radius: 8px;
  padding: 10px;
  border: 1px solid rgba(139, 69, 19, 0.3);
}
.classics-slider .slide-item {
  border: 2px solid #8b4513;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
}
.classics-slider .slide-item:hover {
  border-color: #a0522d;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.5);
}

/* BLAZEMALL STYLING */
.product-item {
  border: 1px solid #444;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.product-item:hover {
  border-color: #d4af37;
  transform: scale(1.05);
}
.product-price {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #d4af37;
  padding: 4px 8px;
  font-weight: bold;
  border-radius: 4px;
  font-size: 12px;
}

/* HOT MUSIC STYLING */
.hot-music-slider {
  background: linear-gradient(
    to right,
    rgba(212, 175, 55, 0.1),
    rgba(212, 175, 55, 0.05)
  );
  border-radius: 8px;
  padding: 10px;
}

/* NAVIGATION ICONS */
.landing-nav-link {
  transition: color 0.3s ease;
  position: relative;
}
.landing-nav-link:hover {
  color: #d4af37 !important;
}
.service-icon {
  margin-right: 0.5rem;
  font-size: 1.6rem;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.landing-nav-link:hover .service-icon {
  transform: scale(1.3) rotate(5deg);
  filter: brightness(1.2);
}
.landing-nav-link .service-icon {
  display: inline-block;
}

/* Navbar alignment fixes */
.navbar-nav .landing-nav-link {
  align-items: center;
  justify-content: center;
}
.navbar-nav .landing-nav-link .service-icon {
  margin-right: 8px;
}

/* HERO SECTION IMPROVEMENTS */
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.hero-play-btn {
  background: #d4af37;
  color: #000;
  border: none;
  padding: 15px 30px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}
.hero-play-btn:hover {
  background: #fff;
  color: #d4af37;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* WIDE FEATURE CARD (For Music/Promo) */
.feature-block {
  margin: 40px 5%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  background: #000;
  border: 1px solid #333;
}
.feature-bg-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  height: 100%;
  object-fit: cover;
  mask-image: linear-gradient(to right, transparent 0%, black 50%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%);
}
.feature-content {
  position: relative;
  z-index: 5;
  width: 40%;
  padding: 40px;
}
.feature-tag {
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.feature-title {
  font-size: 3rem;
  margin-bottom: 15px;
}

/* ARTIST AVATARS */
.artist-circle {
  width: 150px;
  text-align: center;
}
.artist-circle img {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: border-color 0.3s;
  object-fit: cover;
}
.artist-circle:hover img {
  border-color: #d4af37;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-wrapper {
    height: 60vh;
  }
  .hero-wrapper {
    height: 60vh;
  }

  /* Mobile - Movie Posters (2:3) */
  .slide-item.movie-poster {
    width: 140px;
    height: 210px;
  }

  /* Mobile - Music Covers (1:1) */
  .slide-item.music-cover {
    width: 140px;
    height: 140px;
  }

  /* Generic/Fallback */
  .slide-item img {
    height: 100%;
  }
  .feature-block {
    flex-direction: column;
    height: auto;
  }
  .feature-bg-img {
    position: relative;
    width: 100%;
    height: 250px;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .feature-content {
    width: 100%;
    padding: 20px;
  }
}
