﻿
/* HERO SONG */
.hero {
    position: relative;
    height: 70vh;
    background: linear-gradient(to top,#0f0f0f 15%,transparent), url("/myfiles/images/banner/songsbg.PNG") center/cover;
    padding: 80px 50px;
    display: flex;
    align-items: flex-end;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 46px;
    margin: 0;
}

.hero p {
    opacity: .85;
}


.herom {
    position: relative;
    height: 70vh;
    background: linear-gradient(to top,#0f0f0f 15%,transparent), url("/myfiles/images/banner/banner-1.jpg") center/cover;
    padding: 80px 50px;
    display: flex;
    align-items: flex-end;
}

.herom-content {
    max-width: 600px;
}

.herom h1 {
    font-size: 46px;
    margin: 0;
}

.herom p {
    opacity: .85;
}

.herom button {
    background: #1db954;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
}

.hero button {
    background: #1db954;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 30px;
    cursor: pointer;
}

/* SECTION */
.section {
    padding: 20px 0 10px 40px;
}

    .section h2 {
        margin-bottom: 10px;
    }

/* ROW */
/*.row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

    .row::-webkit-scrollbar {
        display: none
    }*/

/* SONG CARD */

.cardSongWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 170px));
    gap: 12px;
    padding: 0;
    padding-left: 0;
    margin: 0;
    scroll-snap-type: none;
}


.cardSong {
    /*min-width: 170px;
    
    
    position: relative;
    display: flex;*/ /* Makes the card a flex container itself */
    /*flex-direction: column;*/ /* Stacks content inside the card vertically */
    min-width: 170px;
    cursor: pointer;
    margin: 0;
    margin-left: 12px;
}

    .cardSong img {
        width: 170px;
        height: 170px;
        border-radius: 12px;
        transition: .3s;
    }

    .cardSong:hover img {
        transform: scale(1.1);
    }

    .cardSong span {
        position: absolute;
        bottom: 8px;
        left: 8px;
        font-size: 13px;
        background: rgba(0,0,0,.6);
        padding: 3px 6px;
        border-radius: 6px;
    }



.cardMovieWrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 180px));
    gap: 12px;
    padding: 0;
    padding-left: 0;
    margin: 0;
    scroll-snap-type: none;
}

.cardMovie {
    /*min-width: 170px;
    
    
    position: relative;
    display: flex;*/ /* Makes the card a flex container itself */
    /*flex-direction: column;*/ /* Stacks content inside the card vertically */
    min-width: 180px;
    cursor: pointer;
    position: relative;
    margin: 0;
    margin-left: 12px;
}

    .cardMovie img {
        width: 180px;
        height: 260px;
        border-radius: 8px;
        transition: .3s;
    }

    .cardMovie:hover img {
        transform: scale(1.1);
    }

    .cardMovie span {
        position: absolute;
        bottom: 8px;
        left: 8px;
        font-size: 13px;
    }




/* MODAL PLAYER */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

    .modal iframe {
        width: 90%;
        max-width: 900px;
        height: 480px;
        border-radius: 12px;
    }

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
}

@media(max - width:600px) {
    .hero {
        height: 55vh;
        padding: 40px 20px;
    }

        .hero h1 {
            font-size: 32px;
        }

    .modal iframe {
        height: 260px;
    }
}


