body{
font-family:Arial;
margin:0;
background:#f4f4f4;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

header{
background:#111;
color:white;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

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

.hero{
background:url('https://images.unsplash.com/photo-1556911220-e15b29be8c8f') center/cover;
height:80vh;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.hero-text{
background:rgba(0,0,0,0.6);
padding:40px;
}

.btn{
background:#c89b6d;
padding:12px 20px;
color:white;
text-decoration:none;
}

.section{
padding:60px 0;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.card{
background:white;
padding:20px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.card img{
width:100%;
}

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

.gallery img{
width:100%;
}

.cta{
background:#222;
color:white;
text-align:center;
padding:60px;
}

footer{
background:#111;
color:white;
text-align:center;
padding:30px;
}
