/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background: black;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

/* ---------- BACKGROUND ---------- */
.background {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.bg-layer {
  position: absolute;
  inset: -10%; /* 🔥 clave: permite desplazamiento visible */
  background-size: cover;
  background-position: center;
  opacity: 0;

  transform: scale(1.0) translate(0, 0);
  transform-origin: center center;

  transition:
    opacity 2.8s ease-in-out,
    transform 18s ease-in-out;
}


.bg-layer.active {
  opacity: 1;
}

/* ---------- OVERLAY ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

/* ---------- MENU ---------- */
.menu {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 36px;
  padding: 12px 28px;

  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 40px;

  z-index: 5;
}

.menu a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.menu a:hover {
  opacity: 1;
}

/* ---------- HERO ---------- 
.hero {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 2;
}*/

.hero {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  z-index: 2;

  transition:
    transform 4.5s ease,
    opacity 3s ease;
}

.hero.to-bottom {
  transform: translateY(28vh) scale(0.7);
  opacity: 0.5;
}


.hero h1 {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 300;
  letter-spacing: 0.25em;
}

.hero span {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.4em;
  opacity: 0.6;
}
/* ---------- INTRO APPARITION ---------- */
.intro {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 1;
  transition: opacity 2.5s ease;
}

.intro.hidden {
  opacity: 0;
  pointer-events: none;
}

.intro-content {
  text-align: center;
  color: white;
}

.intro-title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 300;
  letter-spacing: 0.25em;
  opacity: 0;
  transition: opacity 2.8s ease;
}

.intro-subtitle {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.4em;
  opacity: 0;
  transition: opacity 1.8s ease;
}

.intro.show .intro-title {
  opacity: 1;
}

.intro.show .intro-subtitle {
  opacity: 0.6;
}
.music-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.album-card {
  text-align: center;
  color: white;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.25);
  padding: 2.5rem 3rem;
  border-radius: 2px;
}

.album-card img {
  width: 260px;
  max-width: 70vw;
  margin-bottom: 1.5rem;
}

.album-card h2 {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  margin: 0;
}

.album-subtitle {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
  letter-spacing: 0.3em;
  margin-top: 0.4rem;
}

.music-links {
  margin-top: 2rem;
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.music-links a {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.music-links a:hover {
  opacity: 1;
}

/* ---------- VISUALS ---------- 
.visuals-layer {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.visual-marker {
  position: absolute;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  opacity: 0.4;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.6s ease, transform 6s ease;
}

.visual-marker:hover {
  opacity: 0.9;
}

.visual-marker .dot {
  margin-right: 8px;
}

/* subtle drift */
.visual-marker {
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translateY(0); }
  to { transform: translateY(-20px); }
}*/


/* ---------- VISUALS ---------- */
.visuals-layer {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.visual-marker {
  position: absolute;
  font-size: 1.1rem; 
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: white;
  
  /* Subimos la opacidad base para que se vea mejor */
  opacity: 0.7; 
  cursor: pointer;
  pointer-events: auto;
  
  /* --- MEJORAS DE LEGIBILIDAD --- */
  /* 1. Sombra suave para separar del fondo */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
  
  /* 2. Un fondo sutil muy difuminado solo tras el texto */
  background: rgba(0, 0, 0, 0.15);
  padding: 8px 16px;
  border-radius: 4px;
  backdrop-filter: blur(2px); /* Desenfoca ligeramente el fondo tras la letra */
  /* ------------------------------ */

  transition: all 0.5s ease;
  animation: floatingDrift 8s ease-in-out infinite alternate;
}

.visual-marker:hover {
  opacity: 1;
  color: #fff;
  background: rgba(0, 0, 0, 0.4); /* Se oscurece un poco más al tocarlo */
  transform: scale(1.1); /* Crece ligeramente */
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4); /* Brillo externo */
}

.visual-marker .dot {
  margin-right: 12px;
  font-size: 1.4rem;
  vertical-align: middle;
  /* El punto puede tener un color sutil para guiar el ojo */
  color: rgba(255, 255, 255, 0.8);
}

/* Animación que combina traslación y una rotación mínima para el efecto "flotante" */
@keyframes floatingDrift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, -25px) rotate(1deg);
  }
  100% {
    transform: translate(-5px, -40px) rotate(-1deg);
  }
}

/* ---------- VIDEO OVERLAY ---------- */
.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  z-index: 10;
}

.video-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.video-wrapper {
  width: 80vw;
  max-width: 960px;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- COPYRIGHT DISCRETE ---------- */
.about-card .about-copyright {
  font-size: 10px;
  opacity: 0.5;
  margin-top: 2rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.about-card .about-contact {
  font-size: 10px;
  opacity: 0.5;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
  text-transform: lowercase;
}

.about-card .about-contact a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.about-card .about-contact a:hover {
  opacity: 0.8;
}


/* ---------- ABOUT MOBILE FIX ---------- */
@media (max-width: 768px) {

  .about-card {
    padding: 2rem 1.8rem;
    max-width: 92vw;
  }

  .about-card h1 {
    font-size: 11px;
    margin-bottom: 1.8rem;
    letter-spacing: 0.45em;
  }

  .about-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-copyright,
  .about-contact {
    font-size: 9px;
    letter-spacing: 0.12em;
  }
}

/* ---------- SOCIAL ICONS FIX ---------- */
.about-social {
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.about-social svg.social-icon {
  width: 28px;
  height: 28px;
  /* IMPORTANTE: Forzamos el color */
  stroke: #ffffff !important; 
  fill: none !important;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  
  opacity: 0.5;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.about-social a:hover svg.social-icon {
  opacity: 1;
  transform: translateY(-3px);
  /*filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5)); /* Efecto de brillo */
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.6));
}


    /* Estilos específicos para el Smart Link */
    .smartlink-container {
      position: relative;
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 120px 20px 60px;
      min-height: 100vh;
    }

    .release-card {
      max-width: 400px;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .cover-art {
      width: 100%;
      aspect-ratio: 1/1;
      background-size: cover;
      background-position: center;
      /* Pon aquí tu portada */
      background-image: url('cover.jpg'); 
    }

    .release-info {
      padding: 25px;
    }

    .release-info h2 {
      font-size: 1.2rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .release-info p {
      font-size: 0.8rem;
      opacity: 0.6;
      letter-spacing: 0.1em;
      margin-bottom: 20px;
    }

    /* Lista de plataformas */
    .platform-list {
      display: flex;
      flex-direction: column;
      gap: 1px; /* Línea divisoria sutil */
      background: rgba(255,255,255,0.1);
    }

    .platform-link {
      background: rgba(0,0,0,0.4);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      text-decoration: none;
      color: white;
      transition: background 0.3s;
    }

    .platform-link:hover {
      background: rgba(255,255,255,0.05);
    }

    .platform-name {
      font-size: 13px;
      letter-spacing: 0.1em;
      font-weight: bold;
    }

    .btn-play {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      border: 1px solid white;
      padding: 6px 15px;
      border-radius: 20px;
      opacity: 0.8;
    }


.content-section h3 {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.bg-layer.active {
  opacity: 0.35;
}

.platform-link {
  transform: scale(1);
  transition: all 0.3s ease;
}

.platform-link:hover {
  transform: scale(1.02);
}

.tracks-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.tracks-list li {
  font-size: 0.85rem;
  padding: 6px 0;
  opacity: 0.85;
}

.tracks-list span {
  opacity: 0.5;
}

.track-item {
  display: block;
  text-decoration: none;
  color: white;
}

.back-home-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Botón secundario más sutil */
.btn-back-home.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}

.btn-back-home.secondary:hover {
  background: white;
  color: black;
}

.about-legal-cta {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
}

.about-legal-button {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.about-legal-button:hover {
  opacity: 1;
  background: white;
  color: black;
}
.legal-card h1 {
  font-size: 30px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 3.5rem;
  text-align: center;
  font-weight: 300;
}
.legal-card h2 {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-top: 3.2rem;
  margin-bottom: 1.2rem;
  font-weight: 400;

  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 14px;
}

.legal-card h1,
.legal-card h2 {
  text-shadow: 0 0 18px rgba(255,255,255,0.08);
}

.legal-divider {
  width: 120px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: -1rem auto 3rem;
}
.legal-card p {
  font-family: 'Inter', serif;
  font-size: 13px;
  line-height: 1.85;
  font-weight: 100;
  letter-spacing: 0.035em;
  opacity: 0.55;
}