* {
    margin: 0;
    font-family: "Special Elite", system-ui;
    font-weight: 400;
    font-style: normal;
    color: white;

}


body {
    background-color: black;
}


a {
    text-decoration: none;
    font-size: 1.2rem;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

P {
    font-size: 1.5rem;
}

header {
    background-color: black;
    position: sticky;
    top: 0;
    z-index: 5;
}

.center_container {
    max-width: 90vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.center_container2 {
    max-width: 90vw;
    margin: 0 auto;
}

.nav_section {
    padding: 1vh 0;
}

.socials_section a:hover img {
    opacity: 0.5;
}


.nav_links_section {
    display: flex;
    gap: 3vw;
    font-size: 0.8rem;
}

.nav_links_section a:hover {
    color: #FF0000;
    text-decoration: none;
}

.nav_section a:hover img {
    opacity: 0.5;
}

.logo_section img {
    width: 10vw;
}

.socials_section img {
    width: 3vw;
    /* Adjust size for larger screens */
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.legal_links {
    display: flex;
    flex-direction: column;
}

.legal_links a {
    font-size: 1rem;
}

.legal_links a:hover {
    text-decoration: underline;
}

/* copy paste above for nav and footer*/

#members {
    display: flex;
    justify-content: center;
    padding-top: 5vh;
}

.all_section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: 10vh;
    padding-bottom: 5vh;
}

.individual_section {
    display: flex;
    padding: 0 12vw;
    padding-bottom: 10vh;
}


.individual_section div {
    flex: 1;
}

.individual_section img {
    width: 20vw;
    /* height: 40vh;        hoogte later aanpassen          */
}

#hover_left a:hover {
    opacity: 0.5;
}

#hover_right a:hover {
    opacity: 0.5;
}

#member_foto {
    text-align: center;
}



#member_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5vh;
}

.socials a img {
    width: 3vw;
}

.socials a:hover img {
    opacity: 0.5;
}

.member_text_detail {
    display: flex;
    flex-direction: column;
    gap: 3vh;
}

.favourites_section {
    text-align: center;
    padding-bottom: 25vh;
}

.favourites_text {
    padding: 4vh 0;
}

.embed_section {
    display: flex;
    justify-content: space-around;
    padding: 2vh 0;
}


/* responsiveness */

/* Mobile-specific styles */
@media (max-width: 600px) {
    .nav_section {
        display: flex;
        flex-direction: column;
        /* Stack navbar items vertically */
        align-items: center;
        padding: 2vh 0;
        /* Add some padding for better spacing */
    }

    .nav_links_section {
        flex-direction: column;
        /* Stack navigation links */
        gap: 1.5vh;
        /* Adjust spacing between links */
        font-size: 1.2rem;
        /* Increase font size for better readability */
        text-align: center;
        /* Center-align links */
    }

    .nav_links_section a {
        padding: 0.5vh 0;
        /* Add padding for touch-friendly links */
        width: 100%;
        /* Make links span the full width */
    }

    .nav_links_section a:hover {
        color: #FF4500;
        /* Slightly different hover color for better visibility */
    }

    .logo_section {
        margin-bottom: 2vh;
        /* Add spacing below the logo */
    }

    .logo_section img {
        width: 25vw;
        /* Adjust logo size for smaller screens */
    }

    .nav_section a:hover img {
        opacity: 0.7;
        /* Slightly reduce opacity on hover */
    }

    header {
        position: static;
        /* Remove sticky behavior for mobile */
    }

    .nav_section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2vh 0;
    }

    .nav_links_section {
        flex-direction: column;
        gap: 1.5vh;
        font-size: 1.2rem;
        text-align: center;
    }

    .nav_links_section a {
        padding: 0.5vh 0;
        width: 100%;
    }

    .nav_links_section a:hover {
        color: #FF4500;
    }

    .logo_section img {
        width: 25vw;
    }

    .socials_section img {
        width: 8vw;
    }

    footer {
        flex-direction: column;
        gap: 2vh;
    }

    body {
        font-size: 0.9rem;
        /* Adjust base font size for smaller screens */
    }

    h1 {
        font-size: 3rem;
        /* Reduce heading size */
    }

    h2 {
        font-size: 2rem;
        /* Reduce subheading size */
    }

    #members {
        flex-direction: column;
        /* Stack members section vertically */
        padding-top: 3vh;
        text-align: center;
    }

    .all_section {
        flex-direction: column;
        /* Stack all sections vertically */
        padding: 5vh 0;
    }

    .individual_section {
        flex-direction: column;
        /* Stack individual sections vertically */
        padding: 0 5vw;
        /* Reduce horizontal padding */
        gap: 3vh;
        /* Add spacing between items */
    }

    .individual_section img {
        width: 80vw;
        /* Adjust image size for smaller screens */
    }

    #member_text {
        gap: 3vh;
        /* Adjust spacing between text elements */
    }

    .socials a img {
        width: 8vw;
        /* Increase size of social icons for better visibility */
    }

    .favourites_section {
        padding-bottom: 10vh;
        /* Reduce bottom padding */
    }

    .embed_section {
        flex-direction: column;
        /* Stack embedded content vertically */
        gap: 3vh;
        /* Add spacing between embeds */
        padding: 2vh 0;
    }

    .embed_section {
        flex-direction: column;
        /* Stack embedded content vertically */
        align-items: center;
        /* Center-align embeds */
        gap: 3vh;
        /* Add spacing between embeds */
        padding: 2vh 0;
    }

    .embed_section iframe,
    .embed_section video,
    .embed_section img {
        width: 90%;
        /* Make embeds fit within the viewport */
        height: auto;
        /* Maintain aspect ratio */
    }

    .favourites_text {
        padding: 2vh 0;
        /* Adjust padding for better spacing */
    }

    header {
        position: static;
        /* Remove sticky behavior for mobile */
    }
}