/*  ESTILOS GENERALES (compartidos por todas las paginas) */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  height: 100%;
  background-color: black;
  color: white;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #1DB954;
 
}


/* ESTILOS FOOTER (comun a todas las paginas) */
footer {
  background-color: #000;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  margin-top: auto;
  width: 100%;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #fff;
  font-size: 2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1DB954;
}


/*INICIO (web.html) - INICIO */


.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.background-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 0 2rem;
}

.main-title {
  animation: fadeSlideUp 2s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-subtitle {
  font-size: 1.5rem;
  margin-top: 1rem;
}

.btn-success {
  background-color: #1DB954;
  border: none;
}

.btn-success:hover {
  background-color: #1ed760;
  color: black;
}

footer {
  background-color: #000;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  margin-top: auto;
  width: 100%;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.social-icons a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #1DB954;
}

footer p {
  font-size: 0.9rem;
  color: #888;
}

a:link {
  color: white;
}
a:visited {
  color: gray;
}
a:hover {
  color: #1DB954;
}

/* INICIO (web.html) - FIN */

/* BIOGRAFIA (biografia.html) - INICIO */


.biografia-gallery {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #ffffff, #f0f0f0);
  color: #333;
  text-align: center;
}

.main-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 2s ease-out forwards;
  font-size: 3.5rem;
  font-weight: bold;
  color: #1DB954; 
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.bio-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.bio-card img {
  width: 100%;
  height: auto;
  display: block;
}

.bio-card p {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Animacion del titulo */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.favorita-form {
  background-color: #f9f9f9;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
}

.favorita-form h2 {
  font-size: 2rem;
  color: #1DB954;
  margin-bottom: 1.5rem;
}

.favorita-form form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.favorita-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: bold;
}

.favorita-form input,
.favorita-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.favorita-form button {
  background-color: #1DB954;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.favorita-form button:hover {
  background-color: #17a44f;
}


/* BIOGRAFÍA (biografia.html) - FIN */

/* FECHAS (fechas.html) - INICIO */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: white;
  height: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
}

.navbar .logo {
  font-size: 2rem;
  font-weight: bold;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar nav ul li a:hover {
  color: #1DB954; 
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; 
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}
.main-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 2s ease-out forwards;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  font-size: 1.5rem;
}

/* Seccion de Fechas de Conciertos */
.dates {
  background-color: #222;
  padding: 4rem 2rem;
  text-align: center;
}

.dates h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.concerts {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.concert {
  background-color: #333;
  padding: 2rem;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.concert p {
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: #111;
  text-align: center;
  padding: 2rem;
  margin-top: auto;
  width: 100%;
}

footer .social-icons a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 1rem;
  text-decoration: none;
}

footer .social-icons a:hover {
  color: #1DB954; 
}

footer p {
  margin-top: 1rem;
  color: #fff;
}

/* FECHAS (fechas.html) - FIN */

/* GALERIA (galeria.html) - INICIO */
.galeria-section {
  padding: 4rem 2rem;
  text-align: center;
}

.galeria-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.galeria-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
}

.galeria-grid img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.galeria-grid img:hover {
  transform: scale(1.05);
}
/*  GALERÍA (galeria.html) - FIN */


/* SUSCRIPCIÓN (suscripcion.html) - INICIO */
.suscripcion-section {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
              url('LASSPINA-33.jpg') no-repeat center center/cover; /
  padding: 4rem 2rem;
  min-height: 100vh;
  color: white;
}

.suscripcion-container {
  background-color: rgba(26, 26, 26, 0.8); 
  padding: 3rem 2rem;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.suscripcion-form input[type="text"],
.suscripcion-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  background-color: #2a2a2a;
  color: #fff;
}

.suscripcion-form input::placeholder {
  color: #bbb;
}

.suscripcion-form input:focus {
  outline: none;
  background-color: #333;
}

.suscripcion-form label {
  font-size: 0.9rem;
  color: #bbb;
}

.suscripcion-form button {
  margin-top: 1rem;
  background-color: #1DB954; 
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  color: black;
  font-weight: bold;
  transition: background-color 0.3s;
}

.suscripcion-form button:hover {
  background-color: #1ed760;
}

/*SUSCRIPCIÓN (suscripcion.html) - FIN */


/* MUSICA (musica.html) - INICIO */

.lanzamientos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
  padding: 2rem;
  background-color: #000;
}

.lanzamiento {
  background-color: #111;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

.lanzamiento:hover {
  transform: scale(1.03);
}

.lanzamiento img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  aspect-ratio: 1 / 1; 
}

.lanzamiento h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 1px;
}

.lanzamiento p {
  margin: 0 1rem 1rem;
  color: #bbb;
  font-size: 0.95rem;
}

.lanzamiento a {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: #1DB954;
  color: black;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-bottom: 1rem;
}

.lanzamiento a:hover {
  background-color: #1ed760;
}



/* musica (musica.html) - FIN */

/* equipo (equipo.html) - inicio */

/* ?? EQUIPO - Presentacin de miembros */
main.formulario {
  padding: 4rem 2rem;
  background-color: #111;
  color: white;
  text-align: center;
}

main.formulario h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1DB954;
  text-transform: uppercase;
}

#equipo-container ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: left;
}

#equipo-container li {
  background-color: #1a1a1a;
  border-left: 5px solid #1DB954;
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

#equipo-container li strong {
  font-size: 1.3rem;
  color: #fff;
}

#equipo-container a {
  color: #1DB954;
  text-decoration: none;
}

#equipo-container a:hover {
  text-decoration: underline;
}


/* equipo (equipo.html) - fin */