:root {
    --color-primary-bg: #FDF7EB;
    --color-secondary-bg: #E8DCC2;
    --color-accent: #b23a48;
    --color-secondary-accent: #3a46b2;
    --color-dark-text: #4A4A4A;
    --color-light-text: #707070;
    --color-button-bg: #b23a48;
    --color-button-hover: #b23a48;
    --font-heading: 'Anton', sans-serif;
    --font-body: 'Anton', sans-serif;
    --border-radius-lg: 12px;
    --border-radius-md: 8px;
    --border-radius-sm: 5px;
    --shadow-light: 0 4px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 8px 20px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    background-color: var(--color-primary-bg);
    color: var(--color-dark-text);
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-accent);
    margin-bottom: 0.8em;
}

h1 { font-size: 2.8em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.8em; }
h4 { font-size: 1.4em; }

p {
    margin-bottom: 1em;
    color: var(--color-light-text);
}

a {
    text-decoration: none;
    color: var(--color-button-bg);
    transition: color 0.3s ease;
}

a:hover {
    color: #de3532;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.main-header {
    background-color: var(--color-secondary-bg);
    padding: 0.8em 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 500;
}

.header-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.03);
}

.logo-image {
    height: 85px;
    width: auto;
    display: block;
}

.main-nav {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2.5em;
    margin: 0;
    padding: 0;
}

.nav-item {
    font-size: 2em;
    font-weight: bold;
    color: var(--color-accent);
    padding: 0.5em 0.8em;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: var(--color-button-hover);
}

.nav-item:hover::after {
    width: 100%;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-section {
    position: relative;
    width: 100%;
    padding: 1.8em 3%;
    margin-top: 4em;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary-bg) 0%, var(--color-secondary-bg) 100%);
    border-radius: var(--border-radius-lg);
}

.hero-content-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0em; 
}

.hero-title-new {
    font-family: var(--font-heading);
    font-size: 4.5em;
    color: var(--color-accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
    line-height: 1;
}

.hero-logo-new {
    height: auto;
    max-width: 300px;
    display: block;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.hero-tagline-new {
    font-family: var(--font-body);
    font-size: 2em;
    color: var(--color-dark-text);
    font-style: italic;
    letter-spacing: 2px;
    margin-top: -0.5em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-title {
    font-size: 3.5em;
    margin: 1.5em auto 0.5em auto;
    color: var(--color-button-bg);
    text-align: center;
    max-width: 1100px;
}

.menu-content-full-page {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4em 5em;
    background-color: white;
    border-radius: var(--border-radius-lg);
}

.menu-images-container {
    display: flex;
    flex-direction: column;
    gap: 3em;
}

.menu-page-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-page-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.content-section {
    padding: 7em 3%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-us-section {
    margin-top: 5em;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    padding: 4em 5em;
    background-color: white;
}

.contact-us-section {
    margin-top: 5em;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    padding: 4em 5em;
    margin-bottom: 5em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-section:nth-of-type(odd) {
    background-color: var(--color-primary-bg);
}

.content-section:nth-of-type(even) {
    background-color: var(--color-secondary-bg);
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 3.5em;
    margin-bottom: 0.8em;
    color: var(--color-button-bg);
}

.section-description {
    font-size: 1.25em;
    max-width: 900px;
    margin: 0 auto 2.5em auto;
    line-height: 1.8;
    color: var(--color-light-text);
}

.contact-details p {
    font-size: 1.1em;
    margin-bottom: 1em;
    color: var(--color-dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-details i {
    color: var(--color-accent);
    font-size: 1.4em;
}

.contact-label {
    color: var(--color-secondary-accent);
}

.contact-value {
    color: var(--color-accent);
}

.main-footer {
    background-color: var(--color-secondary-bg);
    color: var(--color-dark-text);
    padding: 2em 3%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.social-links-footer {
    display: flex;
    gap: 1.5em;
    font-size: 1.8em;
}

.social-links-footer a {
    color: var(--color-dark-text);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links-footer a:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.copyright-text {
    font-size: 1em;
    color: var(--color-light-text);
    margin: 0;
}

@media (max-width: 1024px) {
    .main-header {
        padding: 0.8em 3%;
        flex-wrap: wrap;
    }
    .header-left, .header-right, .main-nav {
        flex: none;
        width: 100%;
        justify-content: center;
    }
    .main-nav {
        order: 3;
        margin-top: 1em;
    }
    .nav-list {
        gap: 1.2em;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-item {
        font-size: 1.1em;
        padding: 0.3em 0.5em;
    }
    .logo-image {
        height: 70px;
    }
    .hero-section {
        margin-top: 1em;
        flex-direction: column;
        gap: 1em;
        min-height: 150px;
    }
    .hero-content {
        flex-direction: column;
    }
    .hero-left, .hero-right {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-tagline {
        font-size: 1.2em;
    }
    .hero-logo {
        max-height: 100px;
    }
    .menu-title {
        margin: 1em auto 1.5em auto;
    }
    .menu-content-full-page {
        padding: 2.5em 2.5em;
        margin: 0 auto;
    }
    .section-title {
        font-size: 2.8em;
    }
    .section-description {
        font-size: 1.1em;
    }

    /* Regola per il titolo su schermi fino a 1024px */
    .hero-title-new {
        font-size: 3em;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.6em; }
    h3 { font-size: 1.4em; }
    h4 { font-size: 1.1em; }
    .main-header {
        padding: 0.6em 5%;
    }
    .logo-image {
        height: 55px;
    }
    .nav-list {
        gap: 0.8em;
    }
    .nav-item {
        font-size: 1.1em;
    }
    .hero-section {
        margin-top: 1em;
        padding: 1em;
    }
    .hero-content {
        flex-direction: column;
        min-height: 100px;
    }
    .hero-left, .hero-right {
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-title-new {
        font-size: 2.5em;
    }

    .hero-tagline {
        font-size: 0.9em;
    }
    .hero-logo {
        max-height: 80px;
    }
    .menu-title {
        margin: 1em auto 1em auto;
    }
    .menu-content-full-page {
        padding: 1.8em;
    }
    .menu-title {
        font-size: 2.5em;
        margin-bottom: 1em;
    }
    .content-section {
        padding: 3em 5%;
    }
    .section-title {
        font-size: 2.2em;
    }
    .section-description {
        font-size: 0.9em;
    }
    .contact-details p {
        font-size: 0.8em;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 0.2em;
    }
    .social-links-footer {
        font-size: 1.5em;
    }
    .copyright-text {
        font-size: 0.9em;
    }
}