/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

/* VARIABILI */
:root {
    --borgogna: #6b1e23;
    --borgogna-dark: #54171b;
    --white: #ffffff;
}

/* CONTAINER */
.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    background: var(--borgogna);
    z-index: 1000;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* LOGO HEADER */
.logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* NAV */
.nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: #f5e6c8; /* tono oro chiaro */
    font-weight: 500;
}

.nav a:hover {
    color: #ffffff;
}

/* BOTTONE CONTATTI MENU */
.btn-contatti {
    background: var(--borgogna);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    transition: background 0.3s;
}

.btn-contatti:hover {
    background: var(--borgogna-dark);
}

/* SOCIAL */
.social a {
    margin-left: 12px;
    text-decoration: none;
    color: #f5e6c8;
    font-weight: bold;
}

.social a:hover {
    color: #ffffff;
}


/* HERO */
.hero {
    height: 80vh;
    background: var(--borgogna);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HERO CONTENT */
.hero {
    position: relative;
    height: 80vh;
    background: 
        linear-gradient(
            rgba(107, 30, 35, 0.75),
            rgba(107, 30, 35, 0.75)
        ),
        url("../img/logo.webp") center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* overlay integrato nel background, questo resta vuoto */
.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    text-align: center;
}

/* BOTTONE HERO */
.hero-btn {
    display: inline-block;
    background: var(--white);
    color: var(--borgogna);
    padding: 18px 40px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 40px;
    transition: transform 0.3s, background 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
    background: #f2f2f2;
}

/* SEZIONI VUOTE (SCROLL TEST) */
section {
    min-height: 100vh;
}
/* CHI SIAMO */
.chi-siamo {
    background: #f8f4ec; /* chiaro caldo / avorio */
    padding: 100px 0;
}

.chi-siamo-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* TESTO */
.chi-siamo-text {
    flex: 1;
}

.chi-siamo-text h2 {
    font-size: 48px;
    color: var(--borgogna);
    margin-bottom: 30px;
}

.chi-siamo-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
}

/* IMMAGINE */
.chi-siamo-image {
    flex: 1;
}

.chi-siamo-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
/* MENU */
.menu-section {
    background: var(--borgogna-dark);
    padding: 100px 0;
    color: #ffffff;
}

.menu-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

.menu-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 17px;
    line-height: 1.6;
    color: #f5e6c8;
}

/* GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ITEM */
.menu-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.menu-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.menu-item p {
    font-size: 15px;
    color: #f5e6c8;
}

/* BOTTONE */
.menu-button {
    text-align: center;
    margin-top: 60px;
}

.btn-menu {
    background: #f5e6c8;
    color: var(--borgogna);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-menu:hover {
    background: #ffffff;
}
/* SPECIALITÀ DEL GIORNO */
.specialita-section {
    background: var(--borgogna);
    padding: 120px 0;
    text-align: center;
    color: #ffffff;
}

.specialita-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.specialita-subtitle {
    font-size: 28px;
    color: #f5e6c8;
    margin-bottom: 30px;
}

.specialita-price {
    font-size: 96px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.specialita-time {
    font-size: 20px;
    margin-bottom: 25px;
}

.specialita-note {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.6;
    color: #f5e6c8;
}

.specialita-btn {
    display: inline-block;
    background: #ffffff;
    color: var(--borgogna);
    padding: 18px 45px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s, background 0.3s;
}

.specialita-btn:hover {
    transform: scale(1.05);
    background: #f2f2f2;
}
/* DICONO DI NOI */
.recensioni {
    background: #f8f4ec;
    padding: 100px 0;
}

.recensioni-title {
    font-size: 48px;
    text-align: center;
    color: var(--borgogna);
    margin-bottom: 20px;
}

.recensioni-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 17px;
    color: #333;
}

/* GRID */
.recensioni-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* CARD */
.recensione-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.recensione-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.stelle {
    font-size: 22px;
    color: #d4af37;
    margin-bottom: 20px;
}

.recensione-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}

.recensione-card a {
    text-decoration: none;
    color: var(--borgogna);
    font-weight: bold;
}

.recensione-card a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .recensioni-grid {
        grid-template-columns: 1fr;
    }
}
/* LA NOSTRA SEDE */
.sede {
    background: #ffffff;
    padding: 100px 0;
}

.sede-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* TESTO */
.sede-text {
    flex: 1;
}

.sede-text h2 {
    font-size: 48px;
    color: var(--borgogna);
    margin-bottom: 30px;
}

.sede-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333;
}

.indirizzo {
    font-size: 18px;
    margin: 25px 0;
}

/* MAPPA */
.sede-map {
    flex: 1;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sede-content {
        flex-direction: column;
    }

    .sede-map {
        width: 100%;
        height: 300px;
    }
}
/* CONTATTI */
.contatti {
    background: #f8f4ec;
    padding: 100px 0;
    text-align: center;
}

.contatti h2 {
    font-size: 48px;
    color: var(--borgogna);
    margin-bottom: 20px;
}

.contatti-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 17px;
    color: #333;
}

/* GRID */
.contatti-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* BOX */
.contatto-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--borgogna);
}

.contatto-box p {
    font-size: 17px;
    line-height: 1.6;
}

.contatto-box a {
    color: var(--borgogna);
    text-decoration: none;
    font-weight: bold;
}

.contatto-box a:hover {
    text-decoration: underline;
}

/* FOOTER */
.footer {
    background: var(--borgogna-dark);
    padding: 25px 0;
    text-align: center;
}

.footer p {
    color: #f5e6c8;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contatti-grid {
        grid-template-columns: 1fr;
    }
}
/* MOBILE HEADER FIX */
@media (max-width: 768px) {

    .nav {
        display: none;
    }

    .social {
        display: none;
    }

    .header-content {
        justify-content: space-between;
    }

    .logo img {
        height: 50px;
    }
}
section {
    min-height: 100vh;
}