*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#ffffff;
color:#1f2937;
line-height:1.6;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

:root{
--primary:#0F172A;
--gold:#D4AF37;
--light:#F8FAFC;
}

.navbar{
background:#ffffff;
border-bottom:1px solid #e5e7eb;
position:sticky;
top:0;
z-index:1000;
}

.nav-wrapper{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
display:flex;
align-items:center;
gap:10px;
text-decoration:none;
color:var(--primary);
font-weight:700;
font-size:1.2rem;
}

.logo-image{
height:50px;
width:auto;
}

.nav-links{
display:flex;
list-style:none;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:var(--primary);
font-weight:500;
}

.nav-links a:hover{
color:var(--gold);
}

/* .hero{
background:linear-gradient(
rgba(15,23,42,.8),
rgba(15,23,42,.8)
),
url('../images/hero.jpg');

background-size:cover;
background-position:center;

min-height:80vh;

display:flex;
align-items:center;
text-align:center;

color:white;
} */
.hero{
    background-image:url('/assets/images/hero.jpg') !important;
    background-repeat:no-repeat;
    background-position:center center;
    background-size:cover;

    min-height:80vh;

    display:flex;
    align-items:center;
    text-align:center;

    color:white;
}

.hero-content{
width:100%;
}

.hero h1{
font-size:3rem;
margin-bottom:20px;
}

.hero p{
font-size:1.2rem;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:14px 28px;
text-decoration:none;
border-radius:6px;
font-weight:600;
}

.btn-primary{
background:var(--gold);
color:black;
}

.btn-outline{
border:2px solid white;
color:white;
}

.section{
padding:80px 0;
}

.section-title{
text-align:center;
font-size:2rem;
margin-bottom:50px;
color:var(--primary);
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card img{
width:100%;
height:250px;
object-fit:cover;
}

.card-body{
padding:20px;
}

.card-body h3{
margin-bottom:10px;
color:var(--primary);
}

.footer{
background:var(--primary);
color:white;
text-align:center;
padding:50px 20px;
margin-top:80px;
}

@media(max-width:768px){

.hero h1{
font-size:2rem;
}

.nav-wrapper{
flex-direction:column;
gap:15px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
}
}

.bg-light{
background:#f8fafc;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.amenities-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.amenity-card{
background:white;
padding:25px;
border-radius:12px;
text-align:center;
font-weight:600;
box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.cta-section{
background:#0F172A;
color:white;
text-align:center;
padding:80px 20px;
}

.cta-section h2{
font-size:2.5rem;
margin-bottom:15px;
}

.cta-buttons{
margin-top:25px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn-outline-dark{
border:2px solid #D4AF37;
color:#D4AF37;
padding:14px 28px;
text-decoration:none;
border-radius:6px;
font-weight:600;
}

.btn-outline-dark:hover{
background:#D4AF37;
color:black;
}

.whatsapp-float{
position:fixed;
right:25px;
bottom:25px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
text-decoration:none;
border-radius:50%;
background:#25D366;
color:white;
box-shadow:0 8px 25px rgba(0,0,0,.25);
z-index:999;
}

.project-hero{
background:#0F172A;
color:white;
padding:100px 20px;
text-align:center;
}

.project-gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.project-gallery img{
width:100%;
height:300px;
object-fit:cover;
border-radius:12px;
}

.project-description{
max-width:900px;
margin:auto;
font-size:1.1rem;
line-height:1.8;
}

.contact-form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea{
padding:15px;
border:1px solid #ddd;
border-radius:8px;
font-size:1rem;
}