/* ============================= */
/* NAVBAR */
/* ============================= */

html, body{
overflow-x:hidden;
width:100%;
}



.navbar.scrolled{
background:white;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 20px;
background:rgba(255,255,255,.9);
backdrop-filter:blur(10px);
z-index:1000;
box-sizing:border-box;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
font-size:20px;
font-weight:600;
color:#1a2b33;
}

/* Menu */

.nav-menu{
display:flex;
list-style:none;
gap:35px;
}

.nav-menu a{
text-decoration:none;
color:#6b7c86;
font-weight:500;
transition:.3s;
}

.nav-menu a:hover{
color:#2bb3c0;
}

/* Button */

.book-btn{
background:#2bb3c0;
color:white;
padding:10px 20px;
border-radius:30px;
text-decoration:none;
transition:.3s;
}

.book-btn:hover{
background:#22a3af;
}

/* Hamburger */

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.hamburger span{
width:25px;
height:3px;
background:#1a2b33;
border-radius:5px;
transition:.3s;
}

/* Mobile */

@media(max-width:900px){

.nav-menu{
position:absolute;
top:80px;
left:0;
width:100%;
background:white;
flex-direction:column;
text-align:center;
padding:30px 0;
gap:25px;
box-shadow:0 10px 30px rgba(0,0,0,.05);

opacity:0;
pointer-events:none;
transform:translateY(-10px);
transition:.3s;
}

.nav-menu.active{
opacity:1;
pointer-events:auto;
transform:translateY(0);
}

.nav-btn{
display:none;
}

.hamburger{
display:flex;
}

}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
max-width:1200px;
margin:auto;
width:100%;
}


/* ============================= */
/* FOOTER */
/* ============================= */


.footer{
position:relative;
color:white;
margin-top:120px;
}

.footer::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:url('images/footsand.jpg') center/cover no-repeat;
z-index:-2;
}

.footer::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
180deg,
rgba(10,30,40,.85),
rgba(10,30,40,.95)
);
z-index:-1;
}

/* Layout */

.footer-container{
display:grid;
grid-template-columns:2fr 1fr 1fr 1.5fr;
gap:50px;
padding:80px 8%;
}

/* Text */

.footer-brand h2{
font-size:26px;
margin-bottom:12px;
color:white;
}

.footer-brand p{
color:rgba(255,255,255,.75);
}

/* Links */

.footer-links a{
display:block;
margin-bottom:10px;
color:rgba(255,255,255,.7);
text-decoration:none;
transition:.3s;
}

.footer-links a:hover{
color:#2bb3c0;
transform:translateX(4px);
}

/* Contact */

.footer-contact p{
color:rgba(255,255,255,.75);
margin-bottom:8px;
}

/* Bottom */

.footer-bottom{
border-top:1px solid rgba(255,255,255,.15);
padding:20px;
text-align:center;
color:rgba(255,255,255,.6);
font-size:14px;
}


 /* ============================= */ /* RESPONSIVE */ /* ============================= */
@media(max-width:900px){

.footer-container{
grid-template-columns:1fr 1fr;
gap:35px;
}

}

@media(max-width:600px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.footer-links a:hover{
transform:none;
}

}