*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Poppins, sans-serif;
background:#fafafa;
color:#1f2937;
}

h1,h2,h3{
font-family:"Playfair Display", serif;
}

.navbar{
display:flex;
justify-content:space-between;
padding:20px 60px;
background:white;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 3px 15px rgba(0,0,0,0.05);
}

.navbar a{
margin-left:25px;
text-decoration:none;
color:#111;
font-weight:500;
}

.logo{
font-size:22px;
font-weight:700;
}

.hero{
height:95vh;
background:url("images/resort-hero.webp") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
}

.hero-overlay{
background:rgba(0,0,0,0.45);
padding:50px;
text-align:center;
color:white;
border-radius:16px;
}

.hero h1{
font-size:48px;
margin-bottom:10px;
}

.hero p{
margin-bottom:20px;
}

.btn{
background:#c59d5f;
color:white;
padding:14px 26px;
border-radius:8px;
text-decoration:none;
font-weight:500;
}

section{
padding:80px 60px;
}

.experience{
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:40px;
}

.card{
background:white;
padding:30px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

.gallery{
text-align:center;
background:#f3f4f6;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:40px;
}

.gallery-grid img{
width:100%;
height:230px;
object-fit:cover;
border-radius:14px;
}

.about-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-image img{
width:100%;
border-radius:16px;
}

.contact{
background:#0f172a;
color:white;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:40px;
}

.contact-grid p{
margin-bottom:18px;
line-height:1.6;
}

.contact-grid .btn{
display:inline-block;
margin-top:15px;
}

iframe{
width:100%;
height:300px;
border:none;
border-radius:12px;
}

footer{
background:black;
color:white;
text-align:center;
padding:25px;
}

.whatsapp-float{
position:fixed;
bottom:80px;
right:20px;
background:#25D366;
color:white;
padding:14px 18px;
border-radius:50px;
text-decoration:none;
z-index:1000;
}