*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: 'Segoe UI', Arial, sans-serif;
background:#f7f7f7;
color:#333;
line-height:1.6;
}

header{
background:#b60000;
color:white;
padding:20px 0;
}

.container{
width:90%;
max-width:1100px;
margin:auto;
}

.logo{
font-size:28px;
font-weight:700;
}

nav{
margin-top:10px;
}

nav a{
color:white;
margin-right:20px;
text-decoration:none;
font-weight:600;
}

.hero{
background:url('/images/curtisfamousweiners1.webp') center/cover;
height:400px;
display:flex;
align-items:center;
justify-content:center;
color:white;
text-align:center;
}

.hero h1{
font-size:48px;
background:rgba(0,0,0,0.5);
padding:20px;
border-radius:8px;
}

.section{
padding:60px 0;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.card img{
width:100%;
border-radius:8px;
margin-bottom:15px;
}

.menu-item{
display:flex;
justify-content:space-between;
padding:10px 0;
border-bottom:1px solid #eee;
}

footer{
background:#111;
color:white;
padding:30px;
text-align:center;
margin-top:40px;
}

.map{
margin-top:20px;
border-radius:10px;
overflow:hidden;
}