/* ===========================================
   Navigation
=========================================== */

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

    background:rgba(2,6,23,.55);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);

    transition:.35s ease;
}

.navbar.scrolled{

    background:#020617;

    box-shadow:0 10px 30px rgba(0,0,0,.35);

}

.nav-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:82px;

}

/* ======================= */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:800;

    font-size:24px;

}

.logo-icon{

    width:46px;

    height:46px;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    background:linear-gradient(
        135deg,
        #2563EB,
        #38BDF8
    );

    font-size:22px;

    box-shadow:
        0 10px 25px rgba(37,99,235,.35);

}

.logo-text{

    letter-spacing:-1px;

}

/* ======================= */

.nav-links{

    display:flex;

    align-items:center;

    gap:34px;

}

.nav-links a{

    color:#CBD5E1;

    font-size:15px;

    font-weight:500;

    transition:.25s;

}

.nav-links a:hover{

    color:white;

}

/* ======================= */

.nav-actions{

    display:flex;

    gap:14px;

    align-items:center;

}

.login-btn{

    color:#CBD5E1;

    padding:12px 18px;

    border-radius:10px;

    transition:.25s;

}

.login-btn:hover{

    background:rgba(255,255,255,.05);

}

/* ======================= */

.hamburger{

    display:none;

    font-size:30px;

    cursor:pointer;

}

/* ======================= */

@media(max-width:980px){

.nav-links{

display:none;

}

.nav-actions{

display:none;

}

.hamburger{

display:block;

}

}