
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family: Arial, sans-serif;
    background:#fefcf9;
    color:#333;
    line-height:1.6;
}
header{
    background:linear-gradient(to right,#cde7f5,#f7d6e0);
    padding:20px;
    text-align:center;
    border-bottom:4px solid #d4af37;
}
header h1{
    color:#b68b00;
    font-size:3rem;
}
nav{
    margin-top:10px;
}
nav a{
    text-decoration:none;
    color:#444;
    margin:0 12px;
    font-weight:bold;
}
.hero{
    height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(rgba(255,255,255,.6),rgba(255,255,255,.6)),
               url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e');
    background-size:cover;
    background-position:center;
}
.hero h2{
    font-size:3rem;
    color:#b68b00;
}
.section{
    padding:60px 10%;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}
.card{
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}
.card img{
    width:100%;
    height:250px;
    object-fit:cover;
}
.card-content{
    padding:20px;
}
footer{
    background:#cde7f5;
    text-align:center;
    padding:20px;
    margin-top:40px;
}
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.gallery img{
    width:100%;
    border-radius:12px;
    height:250px;
    object-fit:cover;
}
.about{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.button{
    display:inline-block;
    background:#d4af37;
    color:white;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
    margin-top:20px;
}
