/* =============================
   GENERAL RESET
============================= */
html,
body {
  font-family: "Montserrat", Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  /* background-color: #000;
  color: #fff; */
}


/* =============================
   HEADER & NAVBAR
============================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background-color: #000;
  z-index: 1000;
}

.navbar {
  height: 120px;
  width: 100%;
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0px 36px 0px 36px;
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
}

.navbar-brand h1,
.navbar-brand span {
  color: #fff;
  margin: 0px;
}

.brand-title {
  font-weight: 700;
}

.brand-subtitle {
  letter-spacing: 3.2px;
}

.nav-dolby-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  vertical-align: middle;
  margin-top: -2px;
}

.section-title-img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

/* ===== SEPARADORES DEGRADADOS MIXES ===== */
.artists-divider {
  width: 100%;
  height: 2px; /* puedes aumentar si lo quieres más visible */
  margin: 8px 0;
  border-radius: 8px;
}

/* Superior: degradado de blanco (izq) → transparente (der) */
.top-divider {
  background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0)70%);
}

/* Inferior: degradado de transparente (izq) → blanco (der) */
.bottom-divider {
  background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0)70%);
}

/* NAV LINKS */
.navbar-nav .nav-link {
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.2s ease;
}

.navbar-nav .nav-link.active {
  font-weight: 700;
  color: #fff;
}

/* Línea animada desktop */
@media (min-width: 992px) {
  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #fff;
    transition: width 0.3s ease;
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
    width: 100%;
  }
}

/* =============================
   HERO SECTION
============================= */
.hero-section {
  position: relative;
  width: 100%;
  margin-top: 120px;
  overflow: hidden;
}

.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(-25px) scale(1.1);
}

.hero-img.first-load {
  animation: heroFadeZoomIn 1.2s ease-out forwards;
}

.hero-img.loaded {
  opacity: 1 !important;
  transform: none !important;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-overlay .hero-content {
  text-align: center;
  color: #fff;
}

@keyframes heroFadeZoomIn {
  0% {
    opacity: 0;
    transform: translateY(-25px) scale(1.1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =============================
   MOBILE NAV & BURGER
============================= */
.navbar-toggler {
  padding: 0.25rem 0.5rem;
  border: 1px solid #ccc;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1500;
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 65%;
  max-width: 300px;
  height: 100vh;
  background: #000;
  z-index: 2000;
  padding: 2rem 0.5rem;
  transition: right 0.3s ease;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.mobile-menu .nav-link {
  font-size: 1rem;
  margin: 1rem 0;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 991px) {
  header {
    height: 90px;
  }
  .hero-section {
    margin-top: 90px;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 0.2rem 1rem;
    font-size: 0.85rem;
  }
  .navbar-nav .nav-link::after {
    font-weight: 700;
  }

  .navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65%;
    height: 3px;
    margin-left: 8px;
    background-color: #fff;
  }

  .brand-title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .brand-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
  .navbar {
    height: 90px;
  }
}

/* =============================
   BRAND TITLES RESPONSIVE
============================= */
@media (max-width: 1056px) {
  .brand-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  .brand-subtitle {
    font-size: 1.18rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 768px) {
  .brand-title {
    font-size: 1.5rem;
    line-height: 1;
  }
  .brand-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 576px) {
  .brand-title {
    font-size: 1.3rem;
    line-height: 1.1px;
  }
  .brand-subtitle {
    font-size: 0.73rem;
  }
  .navbar {
    height: 80px;
    padding: 0.5rem 0;
  }
  .navbar-brand {
    margin-top: 18px !important;
  }
}

/* =============================
   ARTISTS GRID
============================= */
.artists-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 0 1rem 2rem 1rem;
  max-width: 1400px;
  margin: 0 auto;
}

.artist-card {
  text-align: center;
  padding: 0.5rem;
  cursor: pointer;
}

.artist-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s, border 0.3s;
}

.artist-card img:hover {
  transform: scale(1.05);
  border: 2px solid white;
}

.artist-card h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .artists-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }
  .artist-card h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .artists-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1rem 0.5rem;
  }
  .artist-card h3 {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .artists-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0rem 0.5rem;
  }
  .artist-card {
    max-width: 400px;
    margin: 0 auto;
  }
  .artist-card h3 {
    font-size: 1.1rem;
  }
}

/* =============================
   SECTION TITLES
============================= */
.section-title {
  font-weight: 600;
  font-size: 36px;
}

@media (max-width: 991px) {
  .section-title-img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 16px auto 24px auto;
    padding-top: 0px;
  }
}

#mixes {
  scroll-margin-top: 140px; /* desktop */
}

@media (max-width: 768px) {
  #mixes {
    scroll-margin-top: 100px; /* mobile */
  }
}

