*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
color:#333;
scroll-behavior:smooth;
}

h1,h2,h3{
font-family:'Playfair Display',serif;
}

nav{
position:fixed;
width:100%;
padding:20px 60px;
display:flex;
justify-content:space-between;
align-items:center;
background:rgba(0,0,0,0.5);
backdrop-filter:blur(8px);
z-index:1000;
}

nav h1{
color:#fff;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:25px;
}

nav ul li a{
color:#fff;
text-decoration:none;
font-weight:500;
}

.hero{
height:100vh;
position:relative;
overflow:hidden;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:1s;
}

.slide.active{
opacity:1;
}

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
color:#fff;
text-align:center;
}

.btn{
padding:12px 30px;
background:#f4a261;
color:#fff;
border:none;
border-radius:30px;
cursor:pointer;
text-decoration:none;
}

section{
padding:100px 80px;
}

.room-grid{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
}

.room-card{
width:300px;
background:#fff;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
overflow:hidden;
transition:0.3s;
}

.room-card:hover{
transform:translateY(-10px);
}

.room-card img{
width:100%;
height:200px;
object-fit:cover;
}

.parallax{
background:url('https://images.unsplash.com/photo-1541534401786-c88b0dfd5b8a') center/cover fixed;
height:400px;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:35px;
font-weight:bold;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.gallery-grid img{
width:100%;
border-radius:10px;
}

form{
max-width:600px;
margin:auto;
}

input,textarea,select{
width:100%;
padding:12px;
margin:10px 0;
border-radius:8px;
border:1px solid #ccc;
}

footer{
background:#000;
color:#aaa;
text-align:center;
padding:20px;
}

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:#fff;
padding:15px;
border-radius:50%;
text-decoration:none;
}
