*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Georgia, serif;
    background:#faf7f2;
    color:#333;
}

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

header{
    background:#5a0b0b;
    padding:15px 0;
}

.logo{
    text-align:center;
}

.logo img{
    max-width:220px;
}

nav ul{
    display:flex;
    justify-content:center;
    list-style:none;
    margin-top:15px;
    gap:25px;
}

nav a{
    color:white;
    text-decoration:none;
    font-size:18px;
}

.hero{
    height:650px;
    background:url('banner.jpg') center/cover;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.5);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero h1{
    color:white;
    font-size:60px;
    margin-bottom:20px;
}

.hero p{
    color:#f6d88b;
    font-size:24px;
}

.btn{
    margin-top:25px;
    background:#c79a2b;
    color:white;
    padding:14px 30px;
    text-decoration:none;
    border-radius:5px;
}

section{
    padding:80px 0;
}

h2{
    text-align:center;
    color:#5a0b0b;
    margin-bottom:40px;
    font-size:38px;
}

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

.card{
    background:white;
    padding:30px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

footer{
    background:#5a0b0b;
    color:white;
    text-align:center;
    padding:40px 20px;
}