
body{
font-family:Poppins, sans-serif;
margin:0;
background:#0f0f0f;
color:white;
}

header{
background:black;
padding:20px;
position:sticky;
top:0;
z-index:10;
}

.container{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

.hero{
position:relative;
height:90vh;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-1;
}

.hero-overlay{
background:rgba(0,0,0,0.5);
padding:40px;
border-radius:10px;
}

.hero h1{
font-size:48px;
}

.btn{
display:inline-block;
margin-top:20px;
padding:12px 30px;
background:#d4af37;
color:black;
text-decoration:none;
font-weight:600;
}

.section{
padding:80px 20px;
text-align:center;
}

.dark{
background:#1a1a1a;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1100px;
margin:auto;
margin-top:40px;
}

.card{
background:#222;
border-radius:10px;
overflow:hidden;
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
max-width:1100px;
margin:auto;
margin-top:40px;
}

.gallery img{
width:100%;
border-radius:8px;
}

.whatsapp{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#25D366;
color:white;
text-decoration:none;
font-weight:600;
}

footer{
background:black;
padding:25px;
text-align:center;
}
