/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #f5f5f5;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  z-index: 1000;
  transition: background 0.3s ease;
}

.logo img {
  width: 150px;
  height: auto;
  filter: none;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: #bdbdbd;
  transition: color 0.3s ease;
  position: relative;
}

.nav a:hover {
  color: #c6a15b;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: #c6a15b;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* =========================
   MENÚ HAMBURGUESA
========================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f5f5f5;
  transition: all 0.3s ease;
  border-radius: 1px;
}

/* Animación a X cuando está abierto */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 90px;
  overflow: hidden;
  background-color: #050505;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.55));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero-logo {
  display: block;
  width: min(520px, 85vw);
  height: auto;
  margin: 20px auto 28px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}


.eyebrow,
.section-label {
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c6a15b;
  margin-bottom: 20px;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  background: #c6a15b;
  margin: 14px auto 0;
  opacity: 0.7;
}

.hero h1 {
  font-size: clamp(52px, 8.5vw, 96px);
  line-height: 0.88;
  font-weight: 700;
  margin: 8px 0 18px;
  letter-spacing: -1px;
}

.hero h1 span {
  display: block;
  font-size: 0.58em;
  font-weight: 300;
  color: #c6a15b;
  margin-top: 10px;
  letter-spacing: 6px;
}

.hero-text {
  margin-top: 26px;
  font-size: 13px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #a0a0a0;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 13px 26px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2px;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #c6a15b;
  color: #050505;
  border-color: #c6a15b;
}

.btn-primary:hover {
  background: transparent;
  color: #c6a15b;
}

.btn-secondary {
  background: transparent;
  color: #c6a15b;
  border-color: #c6a15b;
}

.btn-secondary:hover {
  background: #c6a15b;
  color: #050505;
}

/* =========================
   SECTIONS GENERAL
========================= */
.section {
  padding: 100px 6%;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 36px;
  align-items: start;
  border-top: 1px solid #181818;
}

.dark-section {
  background: #0b0b0b;
}

.section-number {
  font-size: 12px;
  letter-spacing: 3px;
  color: #666;
  padding-top: 10px;
}

.section-content {
  max-width: 1080px;
  width: 100%;
}

.section h2,
.contact h2 {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.08;
  font-weight: 500;
  max-width: 820px;
  margin-bottom: 24px;
}

.section-content > p:not(.section-label) {
  max-width: 620px;
  font-size: 16px;
  color: #aaa;
  margin-bottom: 16px;
  line-height: 1.65;
}

/* =========================
   RELEASES (CARDS)
========================= */
.cards {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 24px;
  max-width: 1100px;
}

.card {
  border: 1px solid #222;
  background: #090909;
  transition: transform 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-7px);
  border-color: #c6a15b;
}

.card-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-info {
  padding: 18px 16px 20px;
}

.card-info span {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: #888;
}

.card-info h3 {
  font-size: 18px;
  margin: 7px 0 3px;
  font-weight: 500;
  line-height: 1.25;
}

.card-info p {
  color: #777;
  font-size: 13px;
}

/* =========================
   SESSIONS
========================= */
.session-cards {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 24px;
  max-width: 1200px;
}

.session-card {
  border: 1px solid #222;
  background: #090909;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease;
  min-width: 0;
}

.session-card:hover {
  transform: translateY(-7px);
  border-color: #c6a15b;
}

.session-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #111;
}

.session-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.session-card:hover .session-image img {
  transform: scale(1.05);
}

.session-info {
  padding: 16px 14px 18px;
}

.session-info span {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: #c6a15b;
}

.session-info h3 {
  font-size: 16px;
  margin: 6px 0 3px;
  font-weight: 500;
  line-height: 1.25;
}

.session-info p {
  color: #777;
  font-size: 12px;
}

/* =========================
   TEXT LINK
========================= */
.text-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
  font-size: 13px;
  letter-spacing: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.text-link:hover {
  color: #c6a15b;
  border-color: #c6a15b;
}

/* =========================
   ARTISTS
========================= */

/* Artists toggle */
.artists-toggle {
  cursor: pointer;
  color: #c6a15b !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: opacity 0.3s ease;
}

.artists-toggle:hover {
  opacity: 0.85;
}

.artists-toggle .toggle-icon {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

.artists-toggle.open .toggle-icon {
  transform: rotate(45deg);
}

.artists-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.artists-panel.open {
  max-height: 2000px;
  overflow-y: auto;
  margin-top: 10px;
}


.artist-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #222;
}

.artist-name {
  padding: 24px 6px;
  font-size: 22px;
  border-bottom: 1px solid #222;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.artist-name:nth-child(3n+1),
.artist-name:nth-child(3n+2) {
  border-right: 1px solid #222;
}

.artist-name:hover {
  padding-left: 16px;
  color: #c6a15b;
}

.artist-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #c6a15b;
  transition: width 0.3s ease;
}

.artist-name:hover::after {
  width: 100%;
}

/* =========================
   MODAL ARTISTAS
========================= */
.artist-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.artist-modal.active {
  opacity: 1;
  visibility: visible;
}

.artist-modal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.artist-modal.active .artist-modal-content {
  transform: scale(1);
}

.artist-modal-content img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.artist-modal-content h3 {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 500;
  color: #f5f5f5;
  letter-spacing: 1px;
}

.artist-modal-close {
  position: absolute;
  top: -42px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
}

.artist-modal-close:hover {
  color: #c6a15b;
}

/* =========================
   CONTACT
========================= */
.contact {
  padding: 110px 6%;
  text-align: center;
  border-top: 1px solid #181818;
}

.contact .section-label {
  margin-bottom: 18px;
}

.contact h2 {
  margin-bottom: 18px;
}

.contact p {
  color: #888;
  font-size: 16px;
  margin-bottom: 32px;
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 28px 5%;
  border-top: 1px solid #181818;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 1px;
  color: #777;
}

.socials {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.socials a:hover {
  color: #c6a15b;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 900px) {
  .header {
    padding: 16px 5%;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #0a0a0a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: right 0.35s ease;
    border-left: 1px solid #222;
    z-index: 1000;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 16px;
    letter-spacing: 3px;
  }

  .section {
    grid-template-columns: 1fr;
    padding: 85px 5%;
    gap: 8px;
  }

  .section-number {
    margin-bottom: 4px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
    gap: 20px;
  }

  .session-cards {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 18px;
  }

  
/* Artists toggle */
.artists-toggle {
  cursor: pointer;
  color: #c6a15b !important;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: opacity 0.3s ease;
}

.artists-toggle:hover {
  opacity: 0.85;
}

.artists-toggle .toggle-icon {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

.artists-toggle.open .toggle-icon {
  transform: rotate(45deg);
}

.artists-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.artists-panel.open {
  max-height: 2000px;
  overflow-y: auto;
  margin-top: 10px;
}


.artist-grid {
    grid-template-columns: 1fr;
  }

  .artist-name:nth-child(3n+1),
  .artist-name:nth-child(3n+2) {
    border-right: none;
  }

  .footer {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .logo img {
    width: 125px;
  }

  .hero {
    padding: 120px 20px 70px;
  }

  .hero h1 {
    font-size: clamp(44px, 11vw, 64px);
  }

  .hero h1 span {
    letter-spacing: 4px;
  }

  .section {
    padding: 75px 5%;
  }

  .section h2,
  .contact h2 {
    font-size: clamp(30px, 7.5vw, 42px);
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .session-cards {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .card-info h3,
  .session-info h3 {
    font-size: 17px;
  }

  .artist-name {
    font-size: 20px;
    padding: 22px 4px;
  }

  .contact {
    padding: 90px 5%;
  }
}

/* Pantallas muy grandes */
@media (min-width: 1400px) {
  .section {
    padding: 120px 8%;
  }

  .cards {
    max-width: 960px;
    gap: 28px;
  }

  .session-cards {
    gap: 26px;
  }
}


/* Listen / Player */
.listen-intro {
  color: #999;
  margin: 8px 0 28px;
  font-size: 15px;
}

.player-wrap {
  max-width: 720px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  background: #111;
}

.player-wrap iframe {
  display: block;
  border: none;
}


.players-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.player-label {
  color: #c6a15b;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

@media (min-width: 900px) {
  .players-grid {
    grid-template-columns: 1fr 1fr;
  }
}
