/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar {

    width: 100%;

    padding: 18px 8%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0,0,0,0.05);
}



/* ========================= */
/* LOGO */
/* ========================= */

.logo {

    display: flex;

    align-items: center;
}


.logo img {

    width: 180px;

    object-fit: contain;
}



/* ========================= */
/* NAV LINKS */
/* ========================= */

.nav-links {

    display: flex;

    align-items: center;

    gap: 40px;
}


.nav-links li a {

    font-size: 15px;

    font-weight: 500;

    color: var(--primary);

    position: relative;
}



/* UNDERLINE EFFECT */

.nav-links li a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0%;

    height: 2px;

    background: var(--secondary);

    transition: 0.3s ease;
}


.nav-links li a:hover::after {

    width: 100%;
}


.nav-links li a:hover {

    color: var(--secondary);
}



/* ========================= */
/* NAV BUTTON */
/* ========================= */

.nav-btn {

    background: var(--primary);

    color: white;

    padding: 14px 24px;

    border-radius: 14px;

    font-size: 15px;

    font-weight: 600;

    box-shadow: 0 8px 20px rgba(29, 53, 87, 0.15);
}


.nav-btn:hover {

    background: var(--secondary);

    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(69, 123, 157, 0.2);
}



/* ========================= */
/* MOBILE MENU ICON */
/* (future use) */
/* ========================= */

.menu-toggle {

    display: none;

    font-size: 28px;

    cursor: pointer;

    color: var(--primary);
}