header {
    background-color: var(--primary-color);
}

/* todo nav fixen mobiel  */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    .logo_wrapper img {
        height: 88px;
    }

    .navbar {
        display: flex;
        gap: 24px;

        .navbar_item {
            &:hover {
                text-decoration: underline;
                text-underline-offset: 8px;
            }

            a {
                display: flex;
                align-items: center;
                text-transform: capitalize;

                .hammer_icon {
                    width: 20px;
                    height: 20px;
                    margin-right: 8px;
                }
            }
        }
    }
}



.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 1px;
    background-color: var(--primary-bg-color);
    display: block;
    margin: 7px auto;
    transition: all 0.3s ease-in-out;
}
.hamburger-active {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
    transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
    width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
    transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
    transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
    transform: translateY(-5px) rotate(90deg);
}

.menubar {
    position: absolute;
    top: 0;
    left: -60%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 60%;
    height: 100vh;
    padding: 20% 0;
    background: var(--primary-color);
    transition: all 0.5s ease-in;
    z-index: 2;
}
.active {
    left: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
    padding: 0;
    list-style: none;
}
.menubar ul li {
    margin-bottom: 32px;
}

.menubar ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 95%;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 5px;
}

.menubar ul li a:hover {
    background-color: #f5f5f5;
}


footer {
    background-color: var(--primary-color);
    color: var(--primary-bg-color);
    padding: 48px 0;

    .footer-content {
        display: flex;
        gap: 24px;

        > div {
            width: calc(100% / 3);
        }

        ul {
            li {
                padding-bottom: 16px;
                a {
                    text-transform: none;
                }
            }
        }

        .footer-contact ul {
            text-align: center;
        }
    }

    .footer-copyright {
        text-align: center;

        .footer-copyright-separator {
            width: 72%;
            height: 1px;
            background-color: var(--primary-bg-color);
            margin: 16px auto;
        }
    }
}


@media screen and (max-width: 600px) {
    /* *** Header *** */
    .hamburger {
        display: block;
    }
    nav .navbar {
        display: none;
    }


    /* *** Footer *** */
    footer {
        padding-bottom: 24px;
        .footer-copyright {

            .footer-copyright-separator {
                width: 100%;
            }

            p {
                font-size: 14px;
                line-height: 22px;
            }
        }
    }
}