﻿/* Estilos generales para la sección de Discografía */
.discografia-section {
    background-image: url('/images/fondos/fondo_agenda.png');
    padding: 2rem 0rem 2rem 0rem;
    overflow-x: hidden;
}

.discografia-title {
    padding-left: 2rem;
    font-family: 'Rokkitt', serif;
    font-weight: inherit;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: #8E4C04;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contenedor de los botones y el carrusel */
.discografia-carousel-wrapper {
    position: relative;
    width: 100%; /* O el tamaño que desees */
    overflow: hidden;
}

/* Estilos para los botones de desplazamiento */
.carousel-btn {
    margin: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 100;
    border-radius: 30%;
    transition: background-color 0.3s;
}

    .carousel-btn:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

/* Botón izquierdo */
.left-btn {
    left: 0;
}

/* Botón derecho */
.right-btn {
    right: 0;
}

/* Carrusel de discos */
.discografia-carousel {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
    will-change: transform;
    gap: 5rem;
}

    .discografia-carousel::-webkit-scrollbar {
        display: none;
    }

/* Disco individual */
.disco-item {
    flex-shrink: 0;
    width: 25rem; /* Ajusta el ancho de cada item */
    margin-right: 20px;
}

    .disco-item:hover {
        transform: scale(1.05);
    }

    .disco-item img {
        width: 100%;
        height: 20rem;
        object-fit: cover;
        margin-bottom: 1rem;
    }

.disco-title {
    font-family: 'Rokkitt', serif;
    font-weight: bold;
    font-size: 1.3rem;
    color: #891332;
}

.agenda-full-width-image {
    width: calc(100% + 4rem);
    height: auto;
    margin-left: -2rem;
    margin-right: -2rem;
    max-width: none;
}

/* Responsive */
@media (max-width: 768px) {
    .discografia-title {
        font-size: 2.2rem;
    }

    .disco-item {
        width: 100%; /* Solo una imagen visible en móviles */
    }

    .disco-title {
        font-size: 1.1rem;
    }

    .carousel-btn {
        font-size: 1.5rem;
        padding: 0.8rem;
    }

}

@media (max-width: 480px) {
    .discografia-section {
        padding: 1rem 1rem 1rem 1rem;
    }

    .disco-item {
        width: 100%; /* Solo una imagen visible en móviles */
    }

    .carousel-btn {
        font-size: 1.2rem;
        padding: 0.6rem;
    }

    .discografia-title {
        font-size: clamp(1.2rem, 6vw, 1.5rem);
        padding-left: 0rem;
    }

    .discografia-carousel {
        gap: 0rem;
    }
}
