/* Website by : JamPre */


html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;

    font-family: 'lato', sans-serif;

    color: #fff;

    background-color: #111;
}

section {
    width: 100%;
    height: auto;

    display: flex;
    justify-content: center;
}

a {
    text-decoration: none;
    text-transform: capitalize;

    color: #d5d5d5;

    transition: 0.2s;
}

a:hover {
    color: #999;
}



/* Reused classes */

.container {
    width: 80%;
    height: auto;
}



/* Header */

#header {
    height: 50px;

    position: fixed;

    background-color: #111;

    box-shadow: 0 0 50px #000;
}

#header .container {
    display: flex;
    justify-content: space-between;
    place-items: center;
}

#header .container .left a {
    font-size: 28px;
}

#header .container .right {
    display: flex;
    gap: 20px;
}

#header .container .right a {
    font-size: 21px;
    font-weight: 300;

    /* text-transform: lowercase; */
}




/* Hero segment */

#banner {
    height: 80vh;

    background-image: url(images/banners/banner.jpg);
    background-size: cover;
    background-position: center;
}




/* Images */

#image-gallery {
    margin: 2rem 0;
}

#image-gallery .container {
    height: 300px;

    display: flex;
    justify-content: space-between;
    gap: 10px;

    overflow-x: scroll;
}





/* Music Showcase */

#music {
    margin: 2rem 0;
}

#music .song-gallery {
    width: 80%;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

#music .song-gallery .playable-song {
    display: flex;

    gap: 20px;
}

#music .song-gallery .playable-song img {
    width: 100px;
}





/* About Viktor Segment */

#about .container {
    margin-top: 2rem;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    /* gap: 3rem; */
    /* place-items: center; */
}

#about .container img {
    width: 500px;
    object-fit: cover;
}

#about .container p {
    width: auto;

    margin: 0;

    font-size: 21px;

    text-align: left;
}





/* Contact options */

#contact {
    margin: 3rem 0;
}

#contact .container h2 {
    text-align: center;
}

#contact .container .info {
    display: grid;
    place-items: center;
}

#contact .container .info .social-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

#contact .container .info a {
    text-transform: lowercase;
}

#contact .container .info .social-buttons a {
    text-transform: lowercase;

    filter: invert();
}




/* Page Footer */

#footer {
    height: 100px;

    display: flex;
    /* justify-content: center; */
    place-items: center;

    background-color: #000;
}






/* Impressum */

#impressum {
    display: grid;
    place-items: center;
    height: 90vh;
}

#impressum .container h2 {
    text-align: center;
    text-transform: capitalize;

    font-size: 32px;
}

/* #impressum .container {
    width: 90%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
} */




@media only screen and (min-width: 100px) and (max-width: 1000px) {
    #header {
        height: 70px;
    }
    #header .container .right {
        gap: 10px;
        flex-wrap: wrap;
    }


    #music .song-gallery {
        width: 100%;
        justify-content: center;
    }
    #music .song-gallery .playable-song {
        width: auto;
        gap: 10px;
    }
    #music .song-gallery .playable-song img {
        width: 100px;
    }
    #music .song-gallery .playable-song .song .song-title {
        font-size: 17px;
    }
    #music .song-gallery .playable-song .song audio {
        width: 220px;
    }
    
    
    #about .container {
        display: grid;
        place-items: center;
    }
    #about .container img {
        width: 90%;
    }
}
