/* NAVBAR STYLE */
.navbar{
    width:100%;
    height:80px;
    background:#232F3E;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 10%;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    color:#FEBD69;
    font-size:1.8rem;
    font-weight:bold;
    text-decoration: none;
}

.logo-img {
    height:38px;
    width:auto;
    object-fit:contain;
    border-radius:6px;
}

.nav-links{
    display:flex;
    gap:30px;
    list-style: none;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:1rem;
    font-weight: 500;
    transition:0.3s;
}

.nav-links a:hover, .nav-links a.active{
    color:#FEBD69;
}

.nav-right-glass{
    display:flex;
    align-items:center;
    padding:8px 12px;
    border-radius:20px;
    background:rgba(255,255,255,0.06);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.08);
}

.auth-fab{
    position:relative;
    display:flex;
    align-items:center;
    gap:12px;
}

.fab-main{
    width:55px;
    height:55px;
    border-radius:50%;
    background:white;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    transition:0.4s ease;
    position:relative;
}

.inner-dot{
    width:12px;
    height:12px;
    background:black;
    border-radius:50%;
    box-shadow:0 2px 6px rgba(0,0,0,0.4);
    transition:0.4s ease;
}

.auth-fab:hover .inner-dot{
    transform:scale(1.3);
}

.auth-fab:hover .fab-main{
    transform:rotate(135deg);
}

.fab-btn{
    padding:10px 18px;
    border-radius:14px;
    text-decoration:none;
    font-weight:600;
    color:#FEBD69;
    background:#232F3E;
    border:1px solid rgba(255,255,255,0.1);
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
    opacity:0;
    transform:scale(0.5) translateX(20px);
    pointer-events:none;
    transition:0.4s ease;
}

.auth-fab:hover .fab-btn{
    opacity:1;
    transform:scale(1) translateX(0);
    pointer-events:auto;
}

.fab-btn.login{
    margin-left:10px;
}

.fab-btn.register{
    margin-right:10px;
}

.fab-btn:hover{
    transform:scale(1.05);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}
