* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Georgia", serif;
}

body {
    background: #fff8ef;
    color: #3d2b1f;
}

header {
    min-height: 100vh;
    background:
        linear-gradient(rgba(40,20,5,.45), rgba(40,20,5,.55)),
        url("https://images.unsplash.com/photo-1509440159596-0249088772ff")
        center/cover;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 30px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    letter-spacing: 2px;
}

.hero p {
    margin: 20px auto;
    font-size: 1.3rem;
    max-width: 600px;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 32px;
    background: #c87928;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    transition: .3s;
}

.btn:hover {
    background: #a85d17;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    background: rgba(255,255,255,.9);
    z-index: 10;
}

nav h2 {
    color: #b45f1c;
}

nav a {
    text-decoration: none;
    color: #3d2b1f;
    margin-left: 20px;
}

section {
    padding: 80px 10%;
}

.titolo {
    text-align: center;
    margin-bottom: 50px;
}

.titolo h2 {
    font-size: 2.5rem;
    color: #a85d17;
}

.storia {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.storia img {
    width: 100%;
    border-radius: 20px;
}

.menu {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card h3 {
    color: #b45f1c;
    margin-bottom: 10px;
}

.prezzo {
    font-weight: bold;
    margin-top: 15px;
}

.contatti {
    background: #3d2b1f;
    color: white;
    text-align: center;
}

footer {
    text-align: center;
    padding: 20px;
    background: #24170f;
    color: white;
}

@media(max-width: 800px) {

    nav {
        display: none;
    }

    .storia {
        grid-template-columns: 1fr;
    }

}