*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#0b0b0b;
color:white;
overflow-x:hidden;
}

/* NAVBAR */

nav{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:rgba(0,0,0,.35);
backdrop-filter:blur(15px);
z-index:1000;
}

.logo{
font-size:28px;
font-weight:700;
letter-spacing:4px;
color:#d4af37;
}

nav ul{
display:flex;
list-style:none;
gap:30px;
}

nav ul li a{
color:white;
text-decoration:none;
transition:.4s;
}

nav ul li a:hover{
color:#d4af37;
}

.book-btn{
background:#d4af37;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
color:black;
font-weight:600;
}

.book-btn:hover{
transform:scale(1.05);
}

/* HERO */

.hero{
height:100vh;
background:url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=2000')
center/cover;
display:flex;
justify-content:center;
align-items:center;
position:relative;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
text-align:center;
max-width:800px;
padding:20px;
}

.hero-content h1{
font-size:75px;
margin-bottom:20px;
}

.hero-content p{
font-size:20px;
line-height:1.8;
margin-bottom:30px;
}

.hero-btn{
display:inline-block;
padding:15px 35px;
background:#d4af37;
color:black;
text-decoration:none;
font-weight:600;
border-radius:40px;
}

.hero-btn:hover{
transform:translateY(-5px);
}

/* ABOUT */

.about{
display:flex;
padding:120px 10%;
gap:60px;
align-items:center;
background:#111;
}

.about-image img{
width:100%;
border-radius:20px;
}

.about-image,
.about-text{
flex:1;
}

.about-text h2{
font-size:50px;
margin-bottom:20px;
color:#d4af37;
}

.about-text p{
line-height:1.9;
margin-bottom:25px;
}

.about-text a{
background:#d4af37;
padding:14px 30px;
text-decoration:none;
color:black;
font-weight:600;
border-radius:30px;
}

/* VILLAS */

.villas{
padding:120px 8%;
text-align:center;
}

.villas h2{
font-size:50px;
margin-bottom:60px;
color:#d4af37;
}

.villa-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.villa-card{
background:#161616;
border-radius:20px;
overflow:hidden;
transition:.4s;
}

.villa-card:hover{
transform:translateY(-10px);
}

.villa-card img{
width:100%;
height:260px;
object-fit:cover;
}

.villa-card h3{
margin:20px 0;
}

.villa-card p{
padding:0 20px 30px;
}

/* FEATURES */

.features{
padding:120px 8%;
background:#111;
text-align:center;
}

.features h2{
font-size:50px;
margin-bottom:60px;
color:#d4af37;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.feature{
background:#1a1a1a;
padding:50px;
border-radius:20px;
}

.feature i{
font-size:50px;
color:#d4af37;
margin-bottom:20px;
}

/* TESTIMONIALS */

.testimonials{
padding:120px 8%;
text-align:center;
}

.testimonials h2{
font-size:50px;
margin-bottom:60px;
color:#d4af37;
}

.testimonial-container{
display:flex;
flex-wrap:wrap;
gap:30px;
justify-content:center;
}

.testimonial{
max-width:450px;
background:#161616;
padding:40px;
border-radius:20px;
font-size:20px;
}

/* CTA */

.cta{
padding:120px 8%;
text-align:center;
background:linear-gradient(
135deg,
#d4af37,
#f3d57a
);
color:black;
}

.cta h2{
font-size:55px;
margin-bottom:20px;
}

.cta p{
margin-bottom:30px;
font-size:18px;
}

.cta a{
background:black;
color:white;
padding:15px 35px;
border-radius:30px;
text-decoration:none;
}

/* FOOTER */

footer{
padding:40px;
text-align:center;
background:black;
}

footer h3{
color:#d4af37;
margin-bottom:10px;
}

/* RESPONSIVE */

@media(max-width:900px){

.hero-content h1{
font-size:50px;
}

.about{
flex-direction:column;
}

nav ul{
display:none;
}

}
