.navbar {
    --bs-navbar-nav-link-padding-x: 1rem;
    transition: all 200ms ease-in-out;
    background: transparent;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 200ms ease-in-out;
}

.navbar:not(.scrolled) .btn {
    background-color: #fff;
}

.nav-link {
    font-weight: 500;
    color: var(--primary);
    opacity: 1;
    font-weight: 600;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-dark {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.navbar .logo {
    transition: all 200ms ease-in-out;
    margin: 10px 0;
}

@media screen and (max-width: 767px) {
     .navbar .logo {
        width: 120px;
    }
    .navbar.scrolled .logo {
        margin: 0;
    }
}

@media screen and (max-width: 991px) {
    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        min-height: 380px;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        gap: 24px;
    }

    .nav-link {
        font-family: "Bricolage Grotesque", sans-serif;
    }

}

@media screen and (max-width: 767px) {

    .navbar > .container {
        justify-content: center;
        gap: 8px;
    }

    .navbar .btn {
        padding: 10px 20px;
    }
}