/* style-index.css */

body.index-page {
  background: #000;
  color: white;
  font-family: 'Orbitron', sans-serif /* Igual que biografía */
  padding-top: 100px; /* deja espacio para la barra fija */
  margin: 0;
}

/* HERO */
.hero {
  height: 100vh;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  text-align: center;
  border-radius: 10px;
}

.hero-content .tagline {
  font-size: 20px;           
  font-weight: 600;          
  color: #ffffff;            /* blanco puro */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7); 
  margin-bottom: 12px;
}

.hero-content .song-title {
  font-family: 'Dancing Script', cursive;
  font-size: 56px;           
  font-weight: 700;          
  color: #ffffff;            /* blanco puro */
  text-shadow: 
    3px 3px 6px rgba(0,0,0,0.8),   /* sombra negra para contraste */
    0 0 8px #ff9800;               /* leve resplandor naranja */
  margin-bottom: 20px;
}

.btn-listen {
  background: orange;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
}

/* SUSCRIPCIÓN */
.subscribe {
  background: #f4f4f4;
  color: #000;
  padding: 20px;
  text-align: center;
}

.subscribe input {
  padding: 8px;
  margin-right: 5px;
}

.subscribe button {
  padding: 8px 12px;
  background: orange;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 4px;
}
