body{
margin:0;
font-family:Poppins;
scroll-behavior:smooth;
}

header{
position:fixed;
top:0;
width:100%;
background:rgba(0,0,0,0.6);
color:white;
z-index:1000;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 10%;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
}

.menu-toggle{
display:none;
cursor:pointer;
}

.hero{
height:100vh;
background:url("https://images.unsplash.com/photo-1566073771259-6a8506099945") center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero h1{
font-size:60px;
}

.btn{
background:#c0392b;
color:white;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
}

section{
padding:80px 10%;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
box-shadow:0 5px 20px rgba(0,0,0,0.1);
border-radius:10px;
overflow:hidden;
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:200px;
object-fit:cover;
border-radius:10px;
cursor:pointer;
}

iframe{
width:100%;
height:400px;
border:0;
}

footer{
background:#111;
color:#aaa;
text-align:center;
padding:20px;
}

.wa{
position:fixed;
bottom:30px;
right:30px;
background:#25D366;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:white;
text-decoration:none;
}