/* header */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 2%;

}

.header_color {
    background-color: #292929;
}

.header__menu {
    display: flex;
    list-style: none;
}


.header__menu-items {
    list-style: none;
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.header__logo--medium {
    width: 15rem;
}

.padding--small {
    display: flex;
    gap: 2rem;
    padding: 10px;
}

.padding_top--medium {
    padding-top: 25px;
    margin-bottom: 2.5rem;
}

/* general */

a {
    text-decoration: none;
    color: white;
}

.page--width {
    margin: 0 10%;
}

.line {
    height: 1px;
    background-color: grey;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 1.2);
}

.btn {
    background-color: #aa9767;
    text-decoration: none;
    color: white;
    border-radius: 5px;
    padding: 20px;
}

.btn:hover {
    background-color: #aca187;
}

body {
    font-family: Plus Jakarta Sans, sans-serif;
    margin: 0;
}

/* Afgeronde projecten */

.projects__title {
    justify-content: center;
    display: flex;
}

/* footer */

.footer {
    background-color: #454545;
    color: white;
    padding: 1% 6%;
}

.footer--content {
    padding: 1rem 2rem;
    margin:0;
}

.socialsfooter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 749px) {
    .footer {
        text-align: center;
    }
}

@media (min-width: 750px) {
    .footer--center {
        justify-content: center;
        display: flex;
    }

    .Introduction {
        gap: 3rem;
        display: flex;
    }

    .split {
        width: 50%;
        gap: 2rem;
    }

    .gap_1 {
        gap: 1rem;
        display: flex;
    }

    .footer {
        display: flex;
        align-items: center;
    }

    .footer--content {
        width: 25%;
    }

}

/* Menu */

/* Basisstijl */

.header__menu-items li {
    position: relative;
    padding: 2px;
}

/* Submenu stijl */
.submenu-items {
    display: none; /* Verberg submenu standaard */
    position: absolute;
    width: 180px;
    background: #292929;
    font-size: 20px;
    list-style: none;
    padding: 5px;
    margin: 0;
    border: 1px solid #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.submenu-items li a {
    padding-left: 15px;
    color: white;
}

/* Toon submenu MOBILE bij hover */
.submenu:hover .submenu-items {
    display: block;
}
@media (max-width: 768px) {
    .header__menu-items {
        flex-direction: column;
    }

    .submenu-items {
        position: static;
        background: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        width: 90%;
    }

    .submenu-items li a {
        color: #fff;
        font-size: 14px;
        padding: 0;
    }

    .submenu > a {
        font-weight: bold;
    }
}

@media (min-width: 750px) { 
    .header__mobile, .headericon__mobile, .footer-logo-mobile {
        display: none !important;
    }

    .header__menu {
        display: flex !important;
    }


}

.header__mobile {
    display: none;
}

.header__menu {
    display: none;
}

/* Basisstijl voor het desktopmenu */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__menu-items {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.header__mobile {
    display: none;
    background-color: #292929;
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100vh;
    z-index: 999;
    padding: 5%;
}

.Header__mobile-spacing {
    display: flex;
    justify-content: space-between;
}

.mobile-menu-items {
    list-style-type: none;
    padding: 0;
    margin: 50px 0;
}

.mobile-menu-items li {
    margin: 15px 0;
}

/* Maak menu zichtbaar op kleinere schermen */
@media screen and (max-width: 768px) {
    .header__menu, .header-logo-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }

    .header__mobile {
        display: none; /* Verborgen tot openMenu() wordt aangeroepen */
    }
}

/* Voor grotere schermen, verberg de hamburger en mobiel menu */
@media screen and (min-width: 769px) {
    .header__mobile {
        display: none;
    }
    
    .menu-toggle {
        display: none;
    }
}

.footer-logo-mobile {
    padding: 5% 0;
    display: flex;
    justify-content: center;
}