/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0e0e0e;
  color: #f2f2f2;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* HEADER */
.header {
  text-align: center;
  padding: 40px 20px 20px;
}

.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(255, 64, 129, 0.4);
  animation: aparecerLogo 1.5s ease forwards;
  opacity: 0;
  transform: translateY(-20px);
}

@keyframes aparecerLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.titulo-principal {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.frase {
  font-size: 1.5rem;
  font-weight: 300;
  color: #ccc;
}






/* MURO DE ARTISTAS */
.muro {
  padding: 50px 20px;
}

.artistas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.artista-card {
  background-color: #1c1c1c;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artista-card:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 35px rgba(255, 0, 102, 0.5);
}

.artista-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

/* Para casos especiales como Matías Diego */
.artista-img.matias {
  object-position: center 80%;
}

.fondo-artista.artista1 {
  background-position: 65% 70%; /* Más a la derecha y un poco más abajo */
}

.fondo-artista.artista2 {
  background-position: 65% 40%; /* Más a la derecha y un poco más abajo */
}



.artista-card .info {
  padding: 20px;
}

.artista-card h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.artista-card p {
  font-size: 1rem;
  color: #aaa;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px 20px;
  background-color: #111;
  font-size: 0.9rem;
  color: #777;
}

/* PÁGINA DE ARTISTA */

/* Fondo con foto y overlay */
.fondo-artista {
  position: relative;
  width: 100%;
  height: 60vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.fondo-artista::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 1;
}

.nombre-artista {
  position: relative;
  z-index: 2;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

/* Contenedor principal */
.contenido-artista {
  max-width: 900px;
  margin: 40px auto 80px;
  padding: 0 20px;
  color: #ddd;
}

.contenido-artista section {
  margin-bottom: 40px;
}

.contenido-artista h2 {
  color: #ff4081;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.8rem;
  border-bottom: 2px solid #ff4081;
  display: inline-block;
  padding-bottom: 4px;
}

.contenido-artista p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Enlaces sociales */
.redes-sociales {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.redes-sociales a {
  color: #ff4081;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.redes-sociales a:hover {
  color: #e0407f;
}

/* Botón volver */
.volver {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 18px;
  background-color: #ff4081;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.volver:hover {
  background-color: #e0407f;
}

/* Responsive */
@media (max-width: 600px) {
  .nombre-artista {
    font-size: 2rem;
  }

  .contenido-artista {
    margin: 30px 15px 50px;
  }
}


.redes-sociales {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.redes-sociales a {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: white !important;       /* Forzar color blanco */
  font-size: 1.1rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 3px rgba(0,0,0,0.7); /* Sombra para destacar texto */
}

/* Botón Instagram */
.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.6);
}

.btn-instagram:hover {
  background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #9d1489 100%);
  box-shadow: 0 6px 18px rgba(156, 20, 137, 0.8);
  color: white !important; /* Forzar blanco en hover */
}

/* Botón Spotify */
.btn-spotify {
  background: #1DB954;
  box-shadow: 0 4px 12px rgba(29, 185, 84, 0.6);
}

.btn-spotify:hover {
  background: #169f45;
  box-shadow: 0 6px 18px rgba(22, 159, 69, 0.8);
  color: white !important; /* Forzar blanco en hover */
}


.redes-sociales a i {
  color: white;
  font-size: 1.4rem;
  vertical-align: middle;
  margin-right: 8px;
  text-shadow: 0 0 3px rgba(0,0,0,0.7);
}




