/* ==================================================
   NAVBAR – SKYNAV ONE
================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

    transition:
        background 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease,
        backdrop-filter 0.45s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* =========================
   CONTAINER GRID
========================= */

.navbar-container {
    height: 100%;
    padding: 0 40px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* =========================
   LEFT
========================= */

.navbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.explore-link {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #0a3d62;
    text-decoration: none;

    transition:
        color 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.explore-link:hover {
    opacity: 0.78;
    transform: translateY(-1px);
}

/* search bar */

.navbar-search input {
    border: 1px solid transparent;
    outline: none;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.045);
    width: 180px;

    transition:
        width 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.navbar-search input::placeholder {
    color: #777;
}

.navbar-search input:focus {
    background: #fff;
    width: 220px;
    border-color: rgba(10, 61, 98, 0.22);
    box-shadow: 0 8px 22px rgba(10, 61, 98, 0.12);
}

/* =========================
   CENTER LOGO
========================= */

.navbar-center {
    justify-self: center;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    height: 100%;

    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.logo-area:hover {
    transform: translateY(-1px) scale(1.02);
    opacity: 0.95;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: #0a3d62;
    white-space: nowrap;
}

.logo-area img {
    height: 60px;
    width: auto;
    display: block;
}

/* =========================
   RIGHT MENU
========================= */

.navbar-right {
    justify-self: end;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    position: relative;
    padding: 8px 0;

    transition:
        color 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.nav-menu li a:hover {
    color: #0a3d62;
    transform: translateY(-1px);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #0a3d62;
    border-radius: 999px;

    transform: translateX(-50%);
    transition: width 0.32s ease;
}

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

.nav-menu li a.active {
    color: #0a3d62;
    font-weight: 600;
}

/* =========================
   LOGIN BUTTON
========================= */

.navbar-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #0a3d62, #06518c);
    color: #fff;
    padding: 10px 25px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    min-width: 80px;
    text-align: center;

    box-shadow: 0 6px 16px rgba(10, 61, 98, 0.2);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background 0.35s ease,
        opacity 0.35s ease;
}

.navbar-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(10, 61, 98, 0.28);
    background: linear-gradient(135deg, #06518c, #0a3d62);
}

.navbar-login-btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 14px rgba(10, 61, 98, 0.22);
}