body {
    font-family: 'Metal Mania', cursive;
    margin: 0;
    padding: 0;
    background: url('FONDO_WEB.jpg') center/80% auto no-repeat fixed;
    color: white;
    position: relative;
    overflow-x: hidden;
  }
  .band-logo {
    width: 800px;      /* ajusta el tamaño según necesites */
    max-width: 90%;    /* para que sea responsive en móviles */
    height: auto;
    display: block;
    margin: 0 auto;    
}

  .suband-title {
    font-size: 3vw; 
    color: white;
    text-shadow: 2px 2px 4px black;
  }
  
  body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 3, 70, 0.3);
    mix-blend-mode: overlay;
    pointer-events: none;
    animation: bluePulse 10s ease-in-out infinite alternate;
    z-index: -1;
  } 
  @keyframes bluePulse {
    0%   { background: rgba(6, 6, 61, 0.2); }
    50%  { background: rgba(11, 6, 32, 0.4); }
    100% { background: rgba(28, 11, 68, 0.2); }
  }
  .carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
  }
  
  /* Pista de imágenes */
  .carousel-track {
    display: flex;
    gap: 20px; 
    width: max-content;
    animation: scroll 40s linear infinite; 
  }
  
  /* Estilo de imágenes */
  .carousel-track img {
    width: 400px;
    height: 500px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  /* Zoom al pasar */
  .carousel-track img:hover {
    transform: scale(1.1);
  }
  
  /* Animación */
  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }
  
  /* Menú lateral */
  .menu {
    transition: transform 0.4s ease-in-out;
  }
  .menu-hidden {
    transform: translateX(-100%);
  }
  
  /* Loader animado */
  #loader img {
    filter: drop-shadow(0 0 10px rgb(0, 0, 0));
  }
  
  .music-section {
    text-align: center;
    padding: 40px;
  }
  .spotify-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
  }
  
  .spotify-grid iframe {
    transition: transform 0.3s ease; /* zoom suave */
  }
  
  .spotify-grid iframe:hover {
    transform: scale(1.03); 
    filter: none !important; 
    opacity: 1 !important;   
  }
  
  .facebook-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1877f2, #0d47a1);
    color: rgb(245, 219, 219);
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
  }
  .facebook-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #000205, #0d3c7a);
  }
  .facebook-icon {
    width: 40px;
    height: 40px;
    fill: white;
  }
  .spotify-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #178b40, #1AA34A); /* Verde Spotify */
    color: rgb(245, 245, 245);
    padding: 20px 40px;
    border-radius: 16px;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.spotify-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #083116, #199943);
}

.spotify-icon {
    width: 40px;
    height: 40px;
    fill: rgb(0, 0, 0);
}
.instagram-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: rgb(245, 245, 245);
  padding: 20px 40px;
  border-radius: 16px;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.instagram-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 25px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, #8d1f43, #7c1b5f, #592377);
}

.instagram-icon {
  width: 40px;
  height: 40px;
  object-fit: contain; 
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 1024px) {
  .band-logo {
    width: 600px; /* tablets */
  }

  .album-container1 {
    gap: 100px; 
  }
}

@media (max-width: 768px) {
  /* Logo */
  .band-logo {
    width: 90%;
  }

  .suband-title {
    font-size: 5vw; /* texto adaptable */
  }

  /* Carrusel */
  .carousel-track img {
    width: 250px;
    height: 350px;
  }

  /* Música */
  .album-container1 {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .album iframe {
    width: 90% !important; 
    height: 200px;
  }

  /* Redes sociales */
  .facebook-card,
  .spotify-card,
  .instagram-card {
    font-size: 20px;
    padding: 15px 20px;
    border-radius: 12px;
  }

  .facebook-icon,
  .spotify-icon,
  .instagram-icon {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  /* Carrusel  */
  .carousel-track img {
    width: 180px;
    height: 250px;
  }

  /* Música */
  .album iframe {
    height: 180px;
  }

  /* Botón menú */
  button {
    padding: 6px 10px;
    font-size: 16px;
  }

  /* Redes sociales */
  .facebook-card,
  .spotify-card,
  .instagram-card {
    font-size: 18px;
    padding: 12px 16px;
  }
}


  