
body{
margin:0;
font-family:Georgia, serif;
background:#0b0b0b;
color:#f5f0e6;
}
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#000;
border-bottom:2px solid #c8a13b;
position:sticky;
top:0;
z-index:1000;
}
.logo{
font-size:28px;
font-weight:bold;
color:#c8a13b;
}
nav a{
color:white;
text-decoration:none;
margin-left:20px;
}
.hero{
height:90vh;
background:linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.7)),
url('images/gallery1.jpeg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
}
.hero-content h1{
font-size:68px;
margin:0;
color:#c8a13b;
}
.hero-content p{
font-size:24px;
max-width:850px;
}
.btn{
display:inline-block;
margin-top:20px;
padding:14px 30px;
background:#c8a13b;
color:#000;
text-decoration:none;
font-weight:bold;
border-radius:5px;
}
.section{
padding:80px 40px;
}
.section h2{
font-size:42px;
color:#c8a13b;
margin-bottom:20px;
}
.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}
.card{
background:#141414;
padding:25px;
border-radius:10px;
border:1px solid #c8a13b;
}
.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:20px;
}
.gallery img{
width:100%;
height:320px;
object-fit:cover;
border-radius:10px;
border:2px solid #c8a13b;
}
.contact{
background:#141414;
padding:35px;
border-radius:10px;
border:1px solid #c8a13b;
}
footer{
text-align:center;
padding:30px;
background:#000;
border-top:1px solid #c8a13b;
}
