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

.navbar{

    position:fixed;

    top:0;

    right:0;

    width:100%;

    background:rgba(15,15,15,.90);

    backdrop-filter:blur(10px);

    z-index:999;

}

.nav-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    height:75px;

}

.logo{

    color:#fff;

    text-decoration:none;

    font-size:28px;

    font-weight:700;

}

.nav-links{

    list-style:none;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:35px;

    flex:1;

}

.nav-links a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.nav-links a:hover{

    color:#e53935;

}

.member-btn{

    background:#e53935;

    color:#fff;

    padding:12px 24px;

    border-radius:8px;

    text-decoration:none;

    transition:.3s;
     white-space:nowrap;

}

.member-btn:hover{

    background:#b71c1c;

}
