*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Poppins',sans-serif;
background:#faf8f3;
}

/* NAVBAR */

header{
position:fixed;
top:0;
left:0;
width:100%;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,.4);
backdrop-filter:blur(10px);
z-index:1000;
}

.logo{
font-family:'Cormorant Garamond',serif;
font-size:34px;
font-weight:700;
color:white;
}

.logo span{
display:block;
font-size:12px;
letter-spacing:4px;
}

nav a{
color:white;
text-decoration:none;
margin:0 15px;
font-size:15px;
}

.btn-book{
padding:12px 25px;
background:#9e8b61;
border-radius:40px;
text-decoration:none;
color:white;
}

/* HERO */

.hero{
height:100vh;
background:url('https://images.unsplash.com/photo-1566073771259-6a8506099945');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
position:relative;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
z-index:2;
color:white;
padding-left:8%;
max-width:700px;
}

.hero-content p{
font-size:24px;
color:#d4b46a;
font-family:'Cormorant Garamond',serif;
}

.hero-content h1{
font-size:95px;
line-height:90px;
font-family:'Cormorant Garamond',serif;
margin:10px 0 20px;
}

.hero-content span{
display:block;
font-size:18px;
line-height:32px;
}

.hero-btn{
margin-top:40px;
display:flex;
gap:20px;
}

.btn-primary{
padding:15px 30px;
background:#9e8b61;
border-radius:40px;
text-decoration:none;
color:white;
display:inline-block;
}

.btn-secondary{
padding:15px 30px;
border:2px solid white;
border-radius:40px;
text-decoration:none;
color:white;
}

/* SECTION */

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title span{
color:#9e8b61;
}

.section-title h2{
font-size:50px;
font-family:'Cormorant Garamond',serif;
}

/* FEATURES */

.features{
padding:80px 8%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
background:white;
}

.feature{
text-align:center;
}

.icon{
font-size:40px;
margin-bottom:15px;
}

/* ABOUT */

.about{
padding:100px 8%;
text-align:center;
}

.about p{
max-width:900px;
margin:auto;
line-height:32px;
color:#555;
}

/* ROOMS */

.rooms{
padding:100px 8%;
}

.room-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.card img{
width:100%;
height:260px;
object-fit:cover;
}

.card-content{
padding:25px;
}

.card-content p{
margin:15px 0;
color:#666;
}

.card-content h4{
color:#8f7750;
}

/* GALLERY */

.gallery{
padding:100px 8%;
background:white;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:15px;
}

.gallery-grid img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
}

/* LOCATION */

.location{
padding:100px 8%;
text-align:center;
}

.location p{
font-size:18px;
line-height:35px;
}

/* CONTACT */

.contact{
padding:100px 8%;
text-align:center;
background:white;
}

/* FOOTER */

footer{
background:#1b1b1b;
color:white;
padding:50px;
text-align:center;
}

footer p{
margin-top:10px;
}

/* WA */

.wa{
position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
background:#25d366;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
text-decoration:none;
color:white;
box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* MOBILE */

@media(max-width:768px){

header{
padding:15px 5%;
}

nav{
display:none;
}

.hero-content h1{
font-size:55px;
line-height:55px;
}

.features{
grid-template-columns:1fr 1fr;
}

.room-grid{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:1fr;
}

.section-title h2{
font-size:36px;
}
}