/* ===========================
   RESET BÁSICO
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ===========================
   BODY GENERAL
   =========================== */
body {
  background: #000;
  color: #f0f0f0;
  font-family: 'Inter', sans-serif;
  text-align: center;
  overflow-x: hidden;
}


/* ===========================
   CONTENIDO
=========================== */

.content {
  width: 100%;       /* ocupa todo el ancho */
  max-width: 100%;   /* elimina cualquier límite */
  margin: 0;         /* elimina márgenes automáticos */
  padding: 0 1.25em 1.25em 1.25em;
  box-sizing: border-box;
}

/* ===========================
   CONTAINER GLOBAL
=========================== */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===========================
   HERO VIDEO SUPERIOR
   =========================== */

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

}
.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  display: block;
}


/* ===========================
   REPRODUCTOR DE YOUTUBE
   =========================== */

.release {
  display: flex;
  align-items: center;
  gap: 4em;

  max-width: 70em;   /* limita el ancho del contenido */
  width: 100%;
  margin: 1em auto;  /* centra el bloque */
}

/* tamaño del video */
.release .video-container {
  flex: 1.2;
  max-width: 40em;
}

/* título */
.release .video-title {
  flex: 1;
  font-size: 2.5em;
  text-align: left;
}
.release:nth-of-type(even) {
  flex-direction: row-reverse;
}

.release:nth-of-type(even) .video-title {
  text-align: right;
}


/* ===========================
   VIDEO SECTION
=========================== */

.video-section {
  background-color: #fff;
  width: 100vw;                     /* ancho total de pantalla */
  margin-left: calc(50% - 50vw);    /* rompe el contenedor */
  padding: 3em 1em;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  color: #000;
}


.section-title {
  font-family: 'Anton', Arial, sans-serif;
  font-size: clamp(2em, 5vw, 4em);
  margin-bottom: 1em;
  text-transform: uppercase;
}

.video-title {
  font-family: 'Anton', Arial, sans-serif;
  font-size: 1.8em;
  margin-top: 2em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  color: #000;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 40em;
  margin: 2em auto;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-container iframe,
.video-container .video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: block;
  object-fit: cover;  
}

/* PLAY BUTTON */

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5em;
  height: 5em;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.3s ease;
  pointer-events: none;
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-left: 1.56em solid #fff;
  border-top: 0.94em solid transparent;
  border-bottom: 0.94em solid transparent;
}

/* Efecto hover */
.video-container:hover .play-button {
  transform: translate(-50%, -50%) scale(1.15);
  background: rgba(255, 0, 0, 0.85);
}



/* ===========================
   SHOPS (BANDCAMP STORE)
=========================== */

.shop-section {
  padding: 6em 0;
  background: #050505;
}

.shop-grid {
  display: flex;
  gap: 2em;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2em;
}

.release-card {
  width: 220px;
  text-decoration: none;
  color: #fff;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.25s ease;
}

.release-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.4);
}

.cover {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
}

.info {
  padding: 1em;
}

.info h3 {
  font-family: 'Staatliches', sans-serif;
  font-size: 1em;
  margin-bottom: 0.3em;
  letter-spacing: 0.1em;
}

.info span {
  font-size: 0.7em;
  opacity: 0.6;
  letter-spacing: 0.15em;
}

/* Subtítulo sección */
.section-sub {
  font-size: 0.9em;
  opacity: 0.6;
  margin-bottom: 2em;
  letter-spacing: 0.1em;
}

/* Hover opcional */
.release-card:hover .cover {
  filter: brightness(0.7);
}

/* ===========================
   PÁRRAFOS
   =========================== */
p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85em;
  margin-top: 1.5em;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  text-align: center;
}


/* ===========================
   FANS / NEWSLETTER FIX
=========================== */

.fans-section {
  /*padding: 6em 0;*/ 
   padding: 8em 0 10em 0;
}

.fans-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* centra el wrapper del formulario */
.newsletter-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* fuerza el centrado del formulario Zoho */
.quick_form_7_css {
  width: 100% !important;
  max-width: 400px;
  margin: 0 auto !important;
}

/* asegura que el form interno no quede “pegado” a la izquierda */
#customForm {
  display: flex;
  justify-content: center;
}



/* ===========================
   NAVBAR SUPERIOR
   =========================== */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5em;

  display: flex;
  justify-content: center;
  align-items: center;

  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(0.4em);

  z-index: 1000;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between; 
  width: 100%;
  max-width: 60em;  
}

/* LOGO */

.logo {
  font-family: 'Anton', Arial, sans-serif;
  font-size: 1.9em;
  letter-spacing: 0.14em;
  margin-right: 2em;
  color: #fff;
  text-decoration: none;
 
}


/* MENÚ  */

.menu {
  position: static; 
  transform: none;

  display: flex;
  justify-content: center;
  gap: 2em;
}

.menu a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 1.3em;
  font-family: 'Staatliches', sans-serif;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.menu a:hover {
   color: #fff;
   transform: translateY(-2px) scale(1.05);
}


/* ===========================
   FOOTER
   =========================== */

footer {
  width: 100%;
  padding: 0.625em 0; /* 10px */
  background-color: rgba(0,0,0,0.85);
  color: #f0f0f0;
  text-align: center;
  font-size: 0.875em; /* 14px */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em; /* 8px */
  box-shadow: 0 -0.125em 0.625em rgba(0,0,0,0.5); /* 2px 10px */
}

/* ===========================
   HAMBURGER BUTTON
=========================== */

.hamburger {
  display: none;
  color: #fff;
  font-size: 1.8em;
  cursor: pointer;
  margin-left: 1em;
}

/* ===========================
   NAV WRAPPER (MOBILE MENU)
=========================== */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2em;
}
/* ===========================
   ICONOS 
=========================== */

.social-icons {
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
}

.social-icons a {
  color: rgba(255,255,255,0.6);
  font-size: 1.3em;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  color: #fff;
  transform: scale(1.1);
}
/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {


  /* ===========================
     HERO VIDEO (IMPORTANTE)
  =========================== */
   
  .hero-video {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    position: relative;
  }
   .hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    height: 100%;

    object-fit: cover;
  }
   
 /* ===========================
     NAVBAR MOBILE (HAMBURGER)
  =========================== */

  .hamburger {
    display: block;
  }
  .topbar {
    height: 4em;
  }
.nav-wrapper {
  position: fixed;
  top: 4em;
  left: 0;
  width: 100%;
   
  height: auto;
  max-height: 80vh; 
   
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  padding: 3em 0 1em; /* top | sides | bottom */
  overflow-y: auto;

  z-index: 1001;
   
  transform: translateY(-20%);
  opacity: 0;
  pointer-events: none;

  transition: transform 0.25s ease, opacity 0.25s ease;
  will-change: transform, opacity;
}

 .nav-wrapper.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

  .menu {
    flex-direction: column;
    gap: 1.5em;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .menu a {
    font-size: 1.4em;
  }

   .social-icons {
    gap: 1.2em;
  }

   
  .release {
    flex-direction: column;
    gap: 1em;
    margin: 2em auto;
  }

  .release:nth-of-type(even) {
    flex-direction: column;
  }

.release .video-title {
  font-size: 1.2em;
  margin-top: 0.3em;   /* un poco más pegado al video */
  margin-bottom: 1em;  /* espacio debajo del título antes del siguiente video */
  text-align: center;
}
 .video-container {
  max-width: 95%;
  margin: 0 auto;
}

}

/* ===========================
   480px (MÓVIL PEQUEÑO)
=========================== */

@media (max-width: 480px) {

   
  .hero-video {
      height: 100vh;
      height: 100dvh;
  }
  .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .topbar {
    padding: 0 1em;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
  }

  .logo {
    font-size: 1.4em;
  }


  .menu {
    gap: 1em;
    font-size: 0.85em;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .menu a {
    font-size: 1.2em;
  }

  /* ICONOS */
  .social-icons a {
    font-size: 1.1em;
  }

  /* FOOTER */
  footer {
    font-size: 0.8em;
  }

  .release .video-title {
    font-size: 1em;
  }

  .video-container {
    max-width: 100%;
  }
}

