/* Sección de Música */
#music {
    padding-bottom: 50px;
    padding-top: 50px;
    background-color: rgb(235, 235, 235);
}

.music-header {
    justify-content: center;
    text-align: center;
}

.music-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 20px;
    width: 100%;
}

.music-h1 {
    color: var(--adanai_grey_90);
    font-weight: 500;
}

/* Selector de Álbumes */
.album-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 5px;
    padding: 10px;
    background-color: rgb(247, 247, 247);
    box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.308);
    border-radius: 6px;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    white-space: nowrap;
}

.album-selector::-webkit-scrollbar {
    display: none;
}

.album-selector h3 {
    color: var(--adanai_grey_70);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 10;
    font-size: clamp(10px, 3vw, 20px);
    min-width: 120px;
}

.album-selector img {
    padding: 5px;
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
    max-height: 100%;
    object-fit: contain;
}

.album-selector img:hover {
    transform: scale(0.90);
}
.album-list {

    list-style: none;
    padding: 10px;
    max-height: 600px;
    max-width: 200px;
    overflow-y: auto;
    scrollbar-width: none;
}

/* Reproductor */

.player-container{
    width: 100%;
    display: none;
    align-items: center;
}

iframe{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}

/* Description */
.description-container {
    display: none;
    text-align: center;
    background-color: white;
    box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.308);
    border-radius: 6px;
    width: 25%;
    padding: 10px;
}
.description-container h3 {
    color: var(--adanai_purple_100);
    font-size: clamp(20px, 3vw, 30px);
}
.description-container p {
    color: var(--adanai_grey_80);
    font-size: clamp(10px, 3vw, 20px);
}


@media (max-width: 1370px) {
    .music-container {
        display: block;
        align-items: center;
        margin: 0 auto;
    }
    .album-container {
        justify-content: center;
        display: flex;
        padding: 10px;
        margin-bottom: 20px;
    }
    .description-container{
        width: 100%;
        height: auto;
        max-height: 100%;
        display: none;
        text-align: center;
        background-color: white;
        box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.308);
        border-radius: 6px;
        justify-content: center;

    }
    .player-container {
        width: 100%;
        height: 50vh;
        display: none;
        justify-content: center;
        margin-bottom: 20px;
    }

    .iframe {
        width: 100%;
        height: 100%;
    }
}
.album-title {
    text-align: center;
    padding: 10px;
}

.album-description{
    text-align: center;
    padding: 10px;
}

