.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    height: 5vw;
    top: 0;
    background-color: var(--background-color);
    box-shadow: #ffcd8137 0 0 20px;
    z-index: 50;
    padding: 0 8vw;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.navbar:hover {
    background-color: var(--background-color-hover);
    box-shadow: #ffcd8137 0 0 25px;
}

.navbar .logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2vw;
}

.navbar .logo img {
    transition: all 0.5s;
    cursor: pointer;
    height: 4vw;
    opacity: 0.8;
    object-fit: cover;
}

.navbar .logo img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.navbar .links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5vw;
}

.navbar .links .button {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5vw;
    opacity: 0.7;
    transition: all 0.3s;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9vw;
    color: #fff;
}

.navbar .links .button:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateY(-2px);
}

.navbar .links .button i {
    font-size: 1.2vw;
}

.navbar .client-button {
    display: flex;
    align-items: center;
    gap: 2vw;
    font-family: 'Bebas Neue', sans-serif;
}

.navbar .client-button a {
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid transparent;
    padding: 0.5vw 1vw;
    border-radius: 0.2vw;
    text-transform: uppercase;
    font-size: 1vw;
}

.navbar .client-button a:hover {
    color: var(--primary-color);
    background-color: transparent;
    border: 1px solid var(--primary-color);
    transform: translateY(-2px);
}
