
body{
font-family: 'Segoe UI', Arial, sans-serif;
margin:0;
background:#f7f7f7;
color:#333;
line-height:1.7;
}
header{
background:#111;
color:white;
padding:20px 0;
position:sticky;
top:0;
z-index:10;
}
.container{
width:92%;
max-width:1200px;
margin:auto;
}
nav ul{
list-style:none;
display:flex;
justify-content:center;
padding:0;
margin:10px 0 0 0;
}
nav ul li{
margin:0 18px;
}
nav ul li a{
color:white;
text-decoration:none;
font-weight:600;
}
.hero{
background:url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85') center/cover;
height:520px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}
.hero h1{
background:rgba(0,0,0,0.55);
padding:25px;
font-size:46px;
border-radius:6px;
}
section{
padding:70px 0;
}
h2{
font-size:34px;
margin-bottom:20px;
}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:28px;
}
.card{
background:white;
border-radius:8px;
overflow:hidden;
box-shadow:0 4px 18px rgba(0,0,0,0.1);
}
.card img{
width:100%;
height:220px;
object-fit:cover;
}
.card-content{
padding:20px;
}
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:18px;
}
.gallery img{
width:100%;
height:200px;
object-fit:cover;
border-radius:6px;
}
.button{
background:#c89b6d;
color:white;
padding:12px 26px;
display:inline-block;
margin-top:10px;
text-decoration:none;
border-radius:4px;
}
footer{
background:#111;
color:white;
text-align:center;
padding:40px;
margin-top:40px;
}
