.header{
position:fixed;
width:100%;
top:0;
z-index:999;
padding:25px 0;
transition:0.4s;
}

.header.scrolled{
background:#0f0f0f;
padding:15px 0;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.nav-wrapper{
display:flex;
align-items:center;
justify-content:space-between;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-family:'Playfair Display';
font-size:22px;
color:white;
letter-spacing:2px;
text-transform:uppercase;
}

.logo img{
height:40px;
width:auto;
display:block;
}

@media (max-width:768px){
  .logo img{height:32px;}
  .logo{font-size:18px;}
}

.nav a{
margin:0 18px;
color:white;
text-decoration:none;
font-size:15px;
position:relative;
opacity:0.92;
transition:opacity 0.25s ease, color 0.25s ease;
}

.nav a:hover{opacity:1;color:var(--gold);}

.nav a.active{
opacity:1;
color:var(--gold);
}

.nav a.active::after{
content:'';
position:absolute;
left:0;
right:0;
bottom:-8px;
height:2px;
background:var(--gold);
border-radius:999px;
}

.book-btn{
background:var(--gold);
padding:10px 22px;
color:white;
text-decoration:none;
border-radius:4px;
transition:transform 0.25s ease, filter 0.25s ease;
}

.book-btn:hover{transform:translateY(-1px);filter:saturate(1.1);}

.menu-toggle{
display:none;
flex-direction:column;
cursor:pointer;
}

.menu-toggle span{
width:25px;
height:3px;
background:white;
margin:4px 0;
}