.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    padding:20px 0;
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(12px);
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:32px;
    color:#fff;
    font-family:'Playfair Display',serif;
    text-decoration:none;
    font-weight:bold;
}

.logo span{
    color:#D4AF37;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.nav-links a:hover{
    color:#D4AF37;
}

.book-btn{
    background:#D4AF37;
    color:#000;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

.book-btn:hover{
    background:#fff;
}