header{
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--primary-color);
    width: 100%;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 4em;
}

.logo,
.footer-logo{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--black);
}

.logo-img{
    width: 70px;
}

.logo-img img{
    width: 100%;
}

.logo-text{
    display: flex;
    flex-direction: column;
}

.company{
    font-weight: 800;
    font-size: 2em;
}

.tagline{
    opacity: 60%;
}

.desktop-nav{
    display: flex;
    gap: 40px;
}

.nav-link{
    text-decoration: none;
    color: var(--black);
    cursor: pointer;
    font-weight: 600;
}

.nav-link-active{
    color: var(--accent-color);
}

.login-btns{
    display: flex;
    gap: 20px;
}

.hamburger-menu-btn{
    cursor: pointer;
    width: 40px;
    margin: 10px;
    display: none;
}

.hamburger-menu-btn img{
    width: 100%;
}

.hamburger-overlay{
    display: none;
    position: fixed;
    inset: 0;
    background: color-mix(in srgb, var(--black) 40%, transparent);
    z-index: 10004;
}

.hamburger-overlay.active{
    display: block;
}

.hamburger-menu{
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10005;
    width: 300px;
    height: 100vh;
    box-shadow: 0 -2px 10px #00000050;
    background: var(--secondary-color);
    transition: 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 1.5em 2em;
    gap: 2em;
}

.hamburger-menu.active{
    right: 0;
}

.hamburger-menu-close{
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    color: var(--black);
}

.hamburger-nav{
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.hamburger-nav .nav-link{
    font-size: 1.1em;
}

.hamburger-login-btns{
    display: flex;
    flex-direction: column;
    gap: 1em;
}

/* MOBILE */

@media (max-width: 1282px){
    .desktop-nav{
        display: none;
    }

    .login-btns{
        display: none;
    }

    .hamburger-menu-btn{
        display: flex;
    }
}

@media (max-width: 523px){
    header{
        padding: 1em 2em;
    }

    .logo-img{
        width: 50px;
    }

    .company{
        font-size: 1.7em;
    }
}