/* ======================
   ARTISTAS - Sección
====================== */

.artist-section {
  text-align: center;
  padding: 50px 20px;
}

.artist-section h1 {
  font-size: 2.5rem;
  color: #FFD700;
  text-shadow: 1px 1px 5px #000;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}

.artist-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.artist-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 250px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
  cursor: pointer;
}

.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.artist-overlay {
  position: relative;
  z-index: 2;
  padding: 20px;
  text-align: center;
}

.artist-overlay h2 {
  margin: 0 0 5px;
  color: #FFD700;
}

.artist-overlay p {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 10px;
}

.artist-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.artist-socials a {
  color: #FFD700;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.artist-socials a:hover {
  color: #ffcc00;
  transform: scale(1.2);
}

.artist-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Animaciones escalonadas */
.artist-card:nth-child(1) { animation-delay: 0.2s; }
.artist-card:nth-child(2) { animation-delay: 0.4s; }
.artist-card:nth-child(3) { animation-delay: 0.6s; }
.artist-card:nth-child(4) { animation-delay: 0.8s; }

/* Responsive */
@media(max-width:768px) {
  .artist-section h1 { font-size: 2rem; }
  .artist-card { width: 80%; margin-bottom: 20px; }
  .artist-grid { flex-direction: column; align-items: center; }
}
