/* categorias/musicos/metal/metal.style.css */

#btnCopiar {
  transition: color 0.3s ease, transform 0.2s ease;
}

#btnCopiar.text-success {
  transform: scale(1.2);
  /* leve aumento para destacar */
}

/* Opcional: efecto al pasar el mouse o tocar */
#btnCopiar:hover {
  transform: scale(1.1);
}

.header-with-background {
  width: 100%;
  background-image: url("img/main-band-img.png");
  /* ¡Cambia esto por la ruta de tu imagen de fondo! */
  background-size: cover;
  /* Escala la imagen para cubrir todo el elemento */
  background-position: center center;
  /* Centra la imagen de fondo */
  background-repeat: no-repeat;
  /* Evita que la imagen se repita */

  /* Ajusta la altura del header según necesites */
  position: relative;
  /* Necesario para que el z-index funcione si añades más elementos */
  /* Puedes añadir un overlay semi-transparente si la imagen de fondo es muy 'ruidosa' */
  /*
      &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3); // Overlay negro con 30% de opacidad
        z-index: 1;
      }
      */
  aspect-ratio: 1 / 1;
}

.band-logo {
  z-index: 2;
  /* Asegura que el logo esté por encima del fondo y de cualquier overlay */
  max-width: 200px;
  /* Ajusta el tamaño máximo del logo si es muy grande */
  margin-bottom: 20px;
  /* Añade un poco de espacio desde el borde inferior del header */
}

.card {
  background-color: rgba(255, 255, 255, 0.158);
}

i {
  font-size: x-large;
}

.social-icon-link {
  text-decoration: none;
  /* Removes underline from links */
  color: inherit;
  /* Inherits color from parent, or set a default */
  margin-left: 15px;
  /* Adds space between icons */
  display: inline-block;
  /* Allows margin-left and hover effect to work well */
  transition: color 0.3s ease-in-out;
  /* Smooth transition for hover effect */
}

.social-icon-link i {
  font-size: 1.5rem;
  /* Adjust icon size as needed */
  vertical-align: middle;
  /* Aligns icons nicely if text is present */
}

.social-icon-link:hover {
  color: var(--bs-primary);
  /* Uses Bootstrap's primary color variable */
}

.modal-body > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Estilos generales para los controles del carrusel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
  width: 2.5rem;
  height: 2.5rem;
  transition: filter 0.3s ease;
}

/* Adaptación automática según modo */
body.dark-mode .carousel-control-prev-icon,
body.dark-mode .carousel-control-next-icon {
  filter: invert(1);
  /* los vuelve claros en fondo oscuro */
}

/* Social */
a:hover .bi {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.carousel-indicators {
  margin-bottom: -1.875rem;
}

.card {
  background-color: var(--dark-clr);
  max-width: 31.25rem;

  time {
    color: var(--main-clr);

    display: flex;
    flex-direction: column;
    align-items: center;

    mark {
      border-radius: 10px;
      font-size: small;
      text-transform: capitalize;
      padding: 0 8px;
      background-color: var(--main-clr);
      color: var(--dark-clr);
    }

    span {
      font-size: 6rem;
      font-weight: 900;
      line-height: 1;
    }

    small {
      text-align: center;
      font-size: medium;
    }
  }

  a {
    color: var(--main-clr);
    text-underline-offset: 8px;

    &:hover {
      background-color: white;
      color: var(--dark-clr);
    }
  }
}
