*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f2eb;
    color:#333;
}

/* HEADER */
.header{
    background:#4b1e24;
    padding:25px;
}

.header-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;
    color:white;
}

.logo{
    width:160px;
}

.titoli h1{
    font-size:32px;
}

.titoli p{
    color:#c8a96a;
}

/* MENU */
.menu{
    background:#2b2b2b;
    text-align:center;
    padding:15px;
}

.menu a{
    color:white;
    text-decoration:none;
    margin:0 20px;
    font-weight:bold;
    transition:0.3s;
}

.menu a:hover{
    color:#c8a96a;
}

/* HERO */
.hero{
    background:#f5f2eb; /* rimosso vino.jpg come background per usare le immagini nuove */
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
}

.hero-content{
    display:flex;
    flex-wrap: wrap;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.hero-text{
    flex:1 1 300px;
    background:rgba(0,0,0,0.6);
    padding:40px;
    color:white;
    text-align:center;
    max-width:600px;
    border-radius:10px;
}

.hero-text h1{
    font-size:40px;
    margin-bottom:10px;
}

.hero-images{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
}

.hero-images img{
    width:100%;
    max-width:250px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

/* MISSION */
.mission{
    max-width:900px;
    margin:80px auto;
    text-align:center;
    line-height:1.7;
}

.mission h2{
    color:#4b1e24;
    margin-bottom:15px;
}

.mission-images{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
    margin-top:20px;
}

.mission-images img{
    width:100%;
    max-width:250px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
}

/* STORIA */
.storia{
    max-width:900px;
    margin:80px auto;
    text-align:center;
    line-height:1.7;
}

.storia h2{
    color:#4b1e24;
    margin-bottom:15px;
}

/* PRODOTTI */
.prodotti{
    text-align:center;
    margin:60px 0;
}

.prodotti h2{
    margin-bottom:30px;
    color:#4b1e24;
}

.prodotti-grid{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
}

.card{
    background:white;
    width:250px;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-10px);
}

.card img{
    width:180px;
}

.card h3{
    margin-top:10px;
    color:#4b1e24;
}

/* FOOTER */
footer{
    background:#4b1e24;
    color:white;
    text-align:center;
    padding:30px;
    margin-top:60px;
}