/* ======================================================
   NAVBAR
====================================================== */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 999;

    background: rgba(255,255,255,0.92);

    backdrop-filter: blur(14px);

    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.navbar-wrapper {

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 85px;
}

.logo-area img {
    max-height: 55px;
}

.nav-menu {

    display: flex;

    align-items: center;

    gap: 28px;
}

.nav-menu li a {

    color: var(--primary-color);

    font-weight: 500;

    position: relative;
}

.nav-menu li a::after {

    content: '';

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 2px;

    background: var(--secondary-color);

    transition: var(--transition);
}

.nav-menu li a:hover::after {
    width: 100%;
}
