/* Tailwind ya está incluido vía CDN */

/* Fade-in para secciones al hacer scroll */
.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Estilos para las tarjetas de álbumes */
.album-card {
  background-color: #1a1a1a;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 30px rgba(255, 255, 255, 0.1);
}

.album-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  display: block;
}

/* Logo animación suave al aparecer */
.logo-fade {
  animation: logoFadeIn 1.5s ease-out both;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Hero background sutil con degradado overlay */
#inicio {
  position: relative;
}

#inicio::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
  z-index: 0;
}

#inicio > div {
  position: relative;
  z-index: 10;
}

/* Efecto hover suave para links */
a {
  transition: color 0.3s ease;
}

a:hover {
  color: #ffffff;
}
