/* Reset e variabili */
:root {
    --primary-color: #D4AF37;
    --secondary-color: #1A1A1A;
    --text-color: #333333;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Header e Navigazione */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 7vw !important;
}

.logo {
    margin-left: 0 !important;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.logo img {
    background: rgba(255,255,255,0.90) !important;
    border-radius: 16px !important;
    padding: 0.6rem 2.2rem !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13) !important;
    height: 80px !important;
    width: auto !important;
    display: block !important;
    margin-right: 2.5rem !important;
    margin-left: calc(-7vw) !important;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    background: rgba(30, 30, 30, 0.65);
    border-radius: 12px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    background: transparent;
    padding: 0.4rem 1rem;
    border-radius: 6px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(255,255,255,0.08);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: center;
    color: var(--white);
    position: relative;
    padding-bottom: 8vh;
    padding-left: 7vw;
}

.hero-overlay {
    background: rgba(20, 20, 20, 0.85);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    max-width: 600px;
    margin: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    animation: fadeIn 1.2s cubic-bezier(.39,.575,.56,1) both;
    margin-top: 2vh;
}

.hero-overlay h1 {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f5f5f5;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.btn-primary {
    background: #7a2323;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: #a02d2d;
    color: #fff;
}

.btn-secondary {
    background: #222;
    color: #fff;
    border: none;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #222;
}

/* Sezioni Generiche */
section {
    padding: 5rem 2rem;
    scroll-margin-top: 100px; /* Compensa l'header fisso per gli anchor links */
}

section h2 {
    text-align: center;
    font-size: 2.7rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

/* DELIVERY CARDS LAYOUT */
.delivery-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.delivery-card-v2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    transition: box-shadow 0.2s;
}

.delivery-card-v2:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.delivery-logo img {
    max-width: 120px;
    max-height: 60px;
    margin-bottom: 1.2rem;
    object-fit: contain;
}

.delivery-btn {
    background: #7a2323;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.2s;
    display: inline-block;
}

.delivery-btn:hover {
    background: #a02d2d;
    color: #fff;
}

@media (max-width: 900px) {
    .delivery-cards {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
    .delivery-card-v2 {
        padding: 1.2rem 1rem 1rem 1rem;
    }
}

/* SEZIONE PRENOTAZIONE SFONDO SCURO */
.reservation-section {
    background: #232324;
    padding: 6rem 0 6rem 0;
}
.reservation-box {
    background: #363638;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    max-width: 600px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 2.5rem 2rem 2rem 2rem;
    gap: 1.5rem;
}
.reservation-box label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.reservation-box input,
.reservation-box select,
.reservation-box textarea {
    background: #555557;
    color: #fff;
    border: 1px solid #aaa;
    border-radius: 6px;
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.reservation-box input::placeholder,
.reservation-box textarea::placeholder {
    color: #ccc;
    opacity: 1;
}
.reservation-btn {
    background: #7a2323;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 2rem;
}
.reservation-btn:hover {
    background: #a02d2d;
    color: #fff;
}

/* Miglioro la griglia del form di prenotazione */
.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem 2rem;
    row-gap: 1.2rem;
    column-gap: 2rem;
}
.reservation-grid .form-group {
    display: flex;
    flex-direction: column;
}
.form-group.full-width {
    grid-column: 1 / -1;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}
.reservation-box label {
    margin-bottom: 0.5rem;
}
.reservation-box input,
.reservation-box select,
.reservation-box textarea {
    margin-bottom: 0;
}
.reservation-btn {
    width: 220px;
    margin: 1.5rem auto 0 auto;
    display: block;
}
@media (max-width: 900px) {
    .reservation-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .reservation-btn {
        width: 100%;
    }
}

/* SEZIONE RECENSIONI */
.reviews-box {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-stars {
    font-size: 2rem;
    margin-bottom: 0.7rem;
}

.reviews-score {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.reviews-count {
    font-size: 1rem;
    color: #7a8a6b;
    margin-bottom: 1rem;
}

.reviews-desc {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.reviews-btn {
    background: #7a2323;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.2s;
    display: inline-block;
}

.reviews-btn:hover {
    background: #a02d2d;
    color: #fff;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

/* FOOTER MIGLIORATO */
.footer {
    background: #232324;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section .contact-info {
    margin-top: 0.5rem;
}

.footer-section .contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.footer-section .contact-info i {
    color: #c84b4b;
    width: 16px;
    font-size: 0.9rem;
}

.footer-hours {
    margin-top: 1.5rem;
}

.footer-hours .hours-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

#hours-list {
    list-style: none;
    padding-left: 0;
    font-size: 0.95rem;
}

#hours-list li {
    color: #e0e0e0;
    margin-bottom: 0.8rem;
}

#hours-list .day {
    font-weight: 500;
    display: block;
    margin-bottom: 0.2rem;
}

#hours-list .hours {
    display: block;
    padding-left: 1.5rem;
    position: relative;
    color: #c0c0c0;
}

#hours-list .hours::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #c84b4b;
}

.contact-info-footer {
    margin-top: 2rem;
}

.contact-info-footer h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
}

.contact-info-footer i {
    color: #c84b4b;
    width: 16px;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #b05a5a;
    text-decoration: underline;
}

.footer-prenota .footer-btn {
    display: inline-block;
    background: #7a2323;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.8rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 1rem;
    text-decoration: none;
    transition: background 0.2s;
}

.footer-prenota .footer-btn:hover {
    background: #a02d2d;
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    background: #363638;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.social-links a:hover {
    background: #7a2323;
    color: #fff;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .footer-section {
        align-items: center;
        justify-content: center;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1rem 0.5rem;
        flex-direction: column;
        text-align: center;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu a {
        color: #333 !important;
    }

    .nav-menu li:last-child a,
    .nav-menu .prenota-link {
        color: #fff !important;
    }
    
    .nav-menu.active {
        display: flex;
    }

    .nav-container {
        padding-left: 0 !important;
    }

    .hero {
        align-items: center;
        justify-content: center;
        padding: 0;
        position: relative;
    }

    .hero-overlay {
        padding: 1.2rem 1rem 1rem 1rem;
        max-width: 95vw;
        margin: 0 auto;
        margin-top: 0.5rem;
    }
    .hero-overlay h1 {
        font-size: 1.6rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
    }
    .btn {
        width: 100%;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 900px) {
    .logo img {
        margin-left: 0 !important;
        height: 60px !important;
        padding: 0.4rem 1.2rem !important;
    }
    .nav-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

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

section {
    animation: fadeIn 1s ease-out;
}

.nav-menu li:last-child a,
.nav-menu .prenota-link {
    background: #7a2323 !important;
    color: #fff !important;
    border-radius: 6px;
    font-weight: 700;
    padding: 0.4rem 1.2rem !important;
    margin-left: 0.7rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
}

.nav-menu li:last-child a:hover,
.nav-menu .prenota-link:hover {
    background: #a02d2d !important;
    color: #fff !important;
}

.about-section {
    background: #fcfaf6;
    padding: 6rem 0 6rem 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 6rem 2rem;
}

.about-text {
    flex: 1.2;
    min-width: 0;
}

.about-text h2 {
    font-size: 2.7rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    text-align: left;
}

.about-subtitle {
    font-style: italic;
    color: #7a8a6b;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    text-align: left;
}

.about-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-badge {
    position: absolute;
    left: -40px;
    bottom: 30px;
    background: #7a2323;
    color: #fff;
    border-radius: 12px;
    padding: 1.2rem 2.2rem 1.2rem 2.2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.about-badge span {
    font-size: 1.1rem;
    opacity: 0.85;
}

.about-badge strong {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    margin-top: 0.2rem;
}

@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    .about-image-container {
        justify-content: center;
    }
    .about-badge {
        left: 20px;
        bottom: 20px;
        padding: 1rem 1.5rem;
    }
    .about-image {
        width: 100%;
        max-width: 400px;
    }
}

.press-section {
    background: #f8f9fa;
    padding: 6rem 0 6rem 0;
    position: relative;
}

.press-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.press-section h2 {
    font-size: 2.7rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    text-align: center;
}

.press-subtitle {
    font-style: italic;
    color: #7a8a6b;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.press-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.press-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    padding-bottom: 0;
    height: 100%;
    animation: cardFadeIn 0.6s ease-out;
}

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

.press-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.18);
    transform: translateY(-6px) scale(1.02);
}

.press-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
    transition: transform 0.3s ease;
}

.press-card:hover .press-card-img {
    transform: scale(1.05);
}

.press-card-content {
    padding: 2rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
}

.press-meta {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1rem;
    color: #7a8a6b;
    margin-bottom: 0.7rem;
    font-style: italic;
}

.press-source {
    font-weight: 700;
    color: #b05a5a;
    font-style: normal;
}

.press-date {
    opacity: 0.8;
}

.press-card-content h3 {
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    margin: 0;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.press-card-date {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.press-card-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.press-card-btn {
    background: linear-gradient(135deg, #7a2323 0%, #a02d2d 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(122, 35, 35, 0.3);
    position: relative;
    overflow: hidden;
}

.press-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.press-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 35, 35, 0.4);
    background: linear-gradient(135deg, #a02d2d 0%, #7a2323 100%);
}

.press-card-btn:hover::before {
    left: 100%;
}

.press-card-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(122, 35, 35, 0.3);
}

@media (max-width: 1100px) {
    .press-cards {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 700px) {
    .press-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    .press-card-img {
        height: 180px;
    }
    .press-card-content {
        padding: 1.5rem;
        gap: 0.8rem;
    }
    .press-card-content h3 {
        font-size: 1.2rem;
    }
    .press-card-excerpt {
        font-size: 0.95rem;
    }
    .press-card-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
}

/* CONTATTI - Miglioramenti estetici */
.contact-section {
    background: #f8f9fa;
    padding: 6rem 0 6rem 0;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.contact-section h2 {
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 2.7rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #7a8a6b;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-info-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    padding: 2.5rem 2rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-box h3 {
    color: #7a2323;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.contact-info-item i {
    font-size: 1.6rem;
    color: #7a2323;
    margin-top: 0.2rem;
    min-width: 28px;
    text-align: center;
}

.contact-info-item:nth-child(1) i { color: #6b8a23; }
.contact-info-item:nth-child(2) i { color: #7a2323; }
.contact-info-item:nth-child(3) i { color: #b05a5a; }

.contact-link {
    color: #7a2323;
    font-weight: 600;
    text-decoration: underline;
    font-size: 1rem;
    margin-top: 0.2rem;
    display: inline-block;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #a02d2d;
}

.contact-map-box {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.contact-map-box iframe {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    .contact-info-box {
        padding: 1.2rem 1rem;
    }
    .contact-map-box {
        height: 400px;
    }
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden; /* Aggiungo visibility hidden per sicurezza */
}

.modal.active {
    display: flex;
    opacity: 1;
    visibility: visible; /* Mostra quando attiva */
}

/* Assicuriamoci che le modali siano completamente nascoste su mobile */
@media (max-width: 768px) {
    .modal {
        display: none !important; /* Forza il nascondimento */
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important; /* Disabilita interazioni quando nascosta */
    }
    
    .modal.active {
        display: flex !important; /* Forza la visualizzazione quando attiva */
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important; /* Riabilita interazioni quando attiva */
    }
    
    /* Assicuriamoci che il contenuto delle modali non sia visibile quando la modale è nascosta */
    .modal:not(.active) .modal-content {
        display: none !important;
    }
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.close:hover {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Article Modal Specific Styles */
.article-modal-content {
    max-width: 900px;
    max-height: 95vh;
    overflow-y: auto;
    padding: 2.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.article-header {
    padding: 0 0 2rem 0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 2rem;
    text-align: center;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.article-source {
    font-weight: 600;
    color: #7a2323;
}

.article-date {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
    display: block;
    text-align: center;
    font-style: italic;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin: 0 0 1rem 0;
    line-height: 1.3;
    font-weight: 600;
    text-align: center;
}

.article-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    margin: 1.5rem 0 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    padding: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-top: 1rem;
}

.article-body p {
    margin-bottom: 1.8rem;
    text-align: justify;
}

.article-body p:last-child {
    margin-bottom: 0;
}

.article-body ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

/* Article Gallery Styles */
.article-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 0;
}

.article-gallery .article-image {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0;
}

.article-gallery .article-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.article-gallery .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-gallery .article-image:hover img {
    transform: scale(1.05);
}

/* Article Video Styles */
.article-video {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: #000;
    position: relative;
}

.article-video iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Responsive Video */
@media (max-width: 768px) {
    .article-video iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .article-video iframe {
        height: 200px;
    }
}

/* Article Typography */
.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #7a2323;
    padding-bottom: 0.5rem;
}

.article-body strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.article-body em {
    font-style: italic;
    color: #666;
}

.article-body a {
    color: #7a2323;
    text-decoration: underline;
    transition: color 0.2s;
}

.article-body a:hover {
    color: #a02d2d;
}

/* Press Card Placeholders */
.press-card-placeholder {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: placeholder-glow 2s ease-in-out infinite alternate;
}

.press-card-placeholder .placeholder-line {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: placeholder-glow 2s ease-in-out infinite;
    border-radius: 4px;
}

/* Menu Modal Specific Styles */
.menu-modal-content {
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.menu-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.menu-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
}

.menu-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #7a2323;
    padding-bottom: 0.5rem;
}

.menu-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.menu-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.menu-item p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.menu-item .price {
    font-weight: 600;
    color: #7a2323;
    font-size: 1.1rem;
}

.menu-card-price {
    color: #7a2323;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: block;
    text-align: right;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(122, 35, 35, 0.2);
}

.menu-card-note {
    color: #7a8a6b;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

/* Hiring Modal Specific Styles */
.hiring-modal-content {
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
}

.hiring-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.hiring-subtitle {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #7a8a6b;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hiring-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.hiring-form-grid .form-group {
    margin-bottom: 1rem;
}

.hiring-form-grid .form-group.full-width {
    grid-column: 1 / -1;
}

.hiring-form-grid .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.hiring-form-grid .form-group input,
.hiring-form-grid .form-group select,
.hiring-form-grid .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.hiring-form-grid .form-group input:focus,
.hiring-form-grid .form-group select:focus,
.hiring-form-grid .form-group textarea:focus {
    outline: none;
    border-color: #7a2323;
}

.hiring-submit-btn {
    background: linear-gradient(135deg, #7a2323 0%, #a02d2d 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
}

.hiring-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 35, 35, 0.3);
}

/* Responsive Design for Modals */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .article-modal-content {
        max-height: 90vh;
        padding: 2rem;
    }
    
    .article-header {
        padding: 0 0 1.5rem 0;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .article-title {
        font-size: 1.8rem;
        line-height: 1.2;
        text-align: center;
    }
    
    .article-date {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .article-image {
        height: 250px;
        margin: 1rem 0 1.5rem 0;
        border-radius: 8px;
    }
    
    .article-body {
        padding: 0;
        font-size: 1rem;
        line-height: 1.6;
        margin-top: 0;
        text-align: left;
    }
    
    .article-body p {
        margin-bottom: 1.5rem;
        text-align: left;
    }
    
    .menu-modal-content,
    .hiring-modal-content {
        padding: 1.5rem;
    }
    
    .menu-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hiring-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .close {
        top: 15px;
        right: 20px;
        font-size: 28px;
        width: 45px;
        height: 45px;
    }
}

/* MENU CARDS LAYOUT */
.menu-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.menu-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}

.menu-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.menu-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px 12px 0 0;
}

.menu-card-body {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-card-body h3 {
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.menu-card-category {
    color: #7a8a6b;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    display: block;
}

.menu-card-body p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 1.2rem;
}

.menu-card-price {
    color: #7a2323;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: block;
    text-align: right;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(122, 35, 35, 0.2);
}

.menu-card-note {
    color: #7a8a6b;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

@media (max-width: 900px) {
    .menu-cards {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
    .menu-card-img {
        height: 180px;
    }
    .menu-card-body {
        padding: 1.2rem 1rem 1rem 1rem;
    }
}

/* SOTTOTITOLI SEZIONI UNIFORMI */
.menu-subtitle,
.delivery-subtitle,
.reviews-subtitle,
.reservation-subtitle,
.contact-subtitle,
.press-subtitle,
.awards-subtitle,
.about-subtitle {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #7a8a6b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    margin-top: -0.5rem;
}

@media (max-width: 900px) {
    .menu-subtitle,
    .delivery-subtitle,
    .reviews-subtitle,
    .reservation-subtitle,
    .contact-subtitle,
    .press-subtitle,
    .awards-subtitle,
    .about-subtitle {
        font-size: 1.05rem;
        margin-bottom: 2rem;
        margin-top: -0.3rem;
    }
}

/* HEADER SCROLLED */
.header.scrolled {
    background: #fff !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
}

.header.scrolled .nav-menu {
    background: #fff !important;
    box-shadow: none;
}

.header.scrolled .nav-menu a {
    color: #222 !important;
}

.header.scrolled .nav-menu a:hover {
    color: var(--primary-color) !important;
}

.header.scrolled .nav-menu li:last-child a,
.header.scrolled .nav-menu .prenota-link {
    background: #7a2323 !important;
    color: #fff !important;
}

.header.scrolled .logo img {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    height: 60px !important;
}

/* DELIVERY DIRECT - Miglioramenti estetici */
.delivery-direct {
  text-align: center;
  margin-top: 2.5rem;
}
.delivery-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
    background: none;
  color: #7a2323;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: underline;
    border: none;
  padding: 0.3rem 0.7rem;
  transition: color 0.2s;
}
.delivery-call-btn i {
  font-size: 1.2em;
  color: #7a2323;
}
.delivery-call-btn:hover {
  color: #a02d2d;
  text-decoration: underline;
}

/* Titolo bianco per la sezione prenotazione su sfondo scuro */
.reservation-section h2 {
  color: #fff;
}

.menu-full-button {
    text-align: center;
    margin-top: 40px;
}

.menu-full-button .btn {
    padding: 15px 30px;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.menu-full-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Menu Modal Styles */
.menu-modal {
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    max-height: 800px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.menu-modal .modal-header {
    padding: 1rem 1.5rem;
    background: #7a2323;
    color: white;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-modal .modal-header h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.menu-modal .modal-close {
    color: white;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: opacity 0.3s;
}

.menu-modal .modal-close:hover {
    opacity: 0.8;
}

.menu-modal .modal-body {
    flex: 1;
    padding: 0;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 0 0 12px 12px;
}

.menu-pdf-viewer {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .menu-modal {
        width: 100%;
        height: 100vh;
        max-height: none;
        margin: 0;
        border-radius: 0;
    }
    
    .menu-modal .modal-header {
        border-radius: 0;
    }
    
    .menu-modal .modal-body {
        border-radius: 0;
    }
}

/* --- AWARDS SECTION (NUOVO LAYOUT) --- */
.awards-section {
    background: #fff;
    padding: 6rem 0 6rem 0;
    position: relative;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.awards-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    color: #232323;
}

.awards-subtitle {
    font-family: 'Poppins', serif;
    font-size: 1.2rem;
    color: #7b8a6d;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.awards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    padding: 28px 22px 18px 22px;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
    text-align: center;
}

.award-card img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
    background: #f8f8f8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    transition: transform 0.2s;
}

.award-card:hover img {
    transform: scale(1.06);
}

.award-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #232323;
}

.award-org {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 12px;
}

.award-icon {
    font-size: 2rem;
    color: #8b2323;
    margin-top: auto;
}

.award-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

@media (max-width: 900px) {
    .awards-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }
    .award-card {
        width: 95vw;
        min-width: unset;
    }
}

.award-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}
.award-link h3 {
    margin: 0;
    color: inherit;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.2s;
}
.award-link:hover h3 {
    color: #7a2323;
    text-decoration: none;
    cursor: pointer;
}

/* HIRING BANNER */
.hiring-banner {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    max-width: 320px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    display: none !important; /* Hidden by default, managed by JS */
}

/* Nasconde i banner finché il JavaScript non ha caricato la configurazione */
.js-loading .hiring-banner,
.js-loading .closure-banner,
.js-loading .hiring-section-mobile,
.js-loading .closure-section-mobile {
    display: none !important;
}

/* Nasconde anche gli elementi specifici per sicurezza */
.js-loading #hiringBanner,
.js-loading #hiringBannerMobile,
.js-loading #closureBanner,
.js-loading #closureBannerMobile {
    display: none !important;
}

/* Regola aggiuntiva per nascondere tutti i banner fin dall'inizio */
body.js-loading .hiring-banner,
body.js-loading .closure-banner,
body.js-loading .hiring-section-mobile,
body.js-loading .closure-section-mobile,
body.js-loading #hiringBanner,
body.js-loading #hiringBannerMobile,
body.js-loading #closureBanner,
body.js-loading #closureBannerMobile {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.hiring-section-mobile {
    display: none !important; /* Hidden by default on desktop */
    padding: 2rem 1rem;
    background: #f8f9fa;
}

.hiring-content {
    text-align: center;
}

.hiring-badge {
    background: #7a2323;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.hiring-content h3 {
    color: #232323;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.hiring-content p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.hiring-btn {
    background: #7a2323;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.hiring-btn:hover {
    background: #a02d2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(50px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

/* HIRING MODAL */
.hiring-modal {
    max-width: 700px;
}

.hiring-modal .modal-header {
    background: #7a2323;
    color: white;
    border-radius: 12px 12px 0 0;
}

.hiring-modal .modal-header h3 {
    color: white;
}

.hiring-modal .modal-close {
    color: white;
}

.hiring-modal .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hiring-modal .form-group.full-width {
    grid-column: 1 / -1;
}

.hiring-modal .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.hiring-modal .form-group input[type="text"],
.hiring-modal .form-group input[type="email"],
.hiring-modal .form-group input[type="tel"],
.hiring-modal .form-group input[type="date"],
.hiring-modal .form-group input[type="file"],
.hiring-modal .form-group textarea,
.hiring-modal .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.hiring-modal .form-group .radio-group,
.hiring-modal .form-group .checkbox-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hiring-modal .form-group input[type="radio"],
.hiring-modal .form-group input[type="checkbox"] {
    margin-right: 5px;
}

.hiring-modal .radio-group label,
.hiring-modal .checkbox-group label {
    font-weight: normal;
    margin-bottom: 0;
}

.hiring-submit-btn {
    width: 100%;
    padding: 15px;
    background: #7a2323;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.hiring-submit-btn:hover {
    background: #a02d2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .hiring-banner {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 2rem auto;
        max-width: 90%;
    }

    .closure-banner {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 2rem auto;
        max-width: 90%;
        animation: none;
    }

    .closure-content h3 {
        font-size: 1.6rem;
    }

    .closure-message {
        font-size: 0.9rem;
    }

    .hiring-modal .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Nascondi sempre le sezioni mobile separate */
    .hiring-section-mobile,
    .closure-section-mobile {
        display: none !important;
    }

    /* Stile responsive per i banner nella hero section */
    .hero .hiring-banner,
    .hero .closure-banner {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 2rem auto;
        max-width: 90%;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    .hero .closure-banner {
        box-shadow: 0 4px 20px rgba(122, 35, 35, 0.3);
    }
}

.delivery-section {
    background: #fff;
    padding: 6rem 0 6rem 0;
    position: relative;
}

.delivery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.reviews-section {
    background: #f8f9fa;
    padding: 6rem 0 6rem 0;
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
}

.hiring-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.hiring-form-grid .form-group {
    display: flex;
    flex-direction: column;
}

.hiring-form-grid .grid-col-span-3 {
    grid-column: span 3;
}

.hiring-form-grid .form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9em;
}

.hiring-form-grid .form-group input[type="text"],
.hiring-form-grid .form-group input[type="email"],
.hiring-form-grid .form-group input[type="tel"],
.hiring-form-grid .form-group input[type="date"],
.hiring-form-grid .form-group input[type="file"],
.hiring-form-grid .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.hiring-form-grid .radio-group,
.hiring-form-grid .checkbox-group {
    /* Styles for the container of radio/checkbox groups */
}

.hiring-form-grid .radio-options,
.hiring-form-grid .checkbox-options {
    display: flex;
    gap: 15px;
    align-items: center;
}

.hiring-form-grid input[type="radio"],
.hiring-form-grid input[type="checkbox"] {
    margin-right: 5px;
}

.hiring-form-grid .radio-group label,
.hiring-form-grid .checkbox-group label {
    font-weight: 500;
    font-size: 0.9em;
}

.hiring-form-grid .checkbox-options label,
.hiring-form-grid .radio-options label {
    font-weight: normal;
    font-size: 1em;
}

.hiring-submit-btn {
    grid-column: span 3;
    padding: 12px 20px;
    background-color: #8b2323;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    width: 100%;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.hiring-submit-btn:hover {
    background-color: #6a1c1c;
}

/* MODAL: Hiring */
.hiring-modal .modal-content {
    max-width: 900px;
}

/* Personalizzazione Flatpickr con bordeaux Frammi (con !important per forzare override) */
.flatpickr-months {
    background: #8b2323 !important;
}
.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #fff !important;
    fill: #fff !important;
    font-weight: bold !important;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    color: #fff !important;
    fill: #fff !important;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: rgba(255, 255, 255, 0.8) !important;
}
.flatpickr-weekday {
  color: #8b2323 !important;
  font-weight: bold !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover {
    background: #8b2323 !important;
    border-color: #8b2323 !important;
    color: #fff !important;
}
.flatpickr-day.today {
    border-color: #8b2323 !important;
}
.flatpickr-day.today:hover, .flatpickr-day.today:focus {
    background: #a13a3a !important;
    border-color: #a13a3a !important;
    color: #fff !important;
}

/* Stili per la nuova sezione recensioni Google */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    position: relative;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid #f0f0f0;
    object-fit: cover;
}

.review-author h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.review-date {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #eee;
}

.review-rating {
    display: flex;
    align-items: center;
}

.review-rating .stars {
    color: #ffd700 !important;
    margin-right: 0.5rem;
}

.review-rating .stars i {
    color: #ffd700 !important;
}

.review-stars {
    color: #ffd700 !important;
}

.review-stars i {
    color: #ffd700 !important;
}

.review-body p {
    flex-grow: 1;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.review-footer {
    font-size: 0.9rem;
    color: #888;
}

.reviews-summary-box {
    text-align: center;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.reviews-summary-box .summary-rating {
    font-size: 2.5rem;
    font-weight: bold;
    color: #8b2323;
}

/* Assicura che tutte le stelle nel riepilogo siano colorate di oro */
.reviews-summary-box .reviews-stars {
    color: #ffd700 !important;
}

.reviews-summary-box .reviews-stars i {
    color: #ffd700 !important;
}

.reviews-summary-box .summary-stars {
    color: #ffd700 !important;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.reviews-summary-box .summary-stars i {
    color: #ffd700 !important;
}

.reviews-summary-box .summary-count {
    font-size: 1rem;
    color: #555;
}

.reviews-summary-box .reviews-btn {
    margin-top: 1rem;
}

.reviews-actions {
    margin-top: 1.5rem;
    text-align: center;
}

.reviews-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #7a2323;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid #7a2323;
}

.reviews-google-btn:hover {
    background: #a02d2d;
    border-color: #a02d2d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 35, 35, 0.3);
}

.reviews-google-btn i {
    font-size: 1.1rem;
}

/* Responsive per il bottone Google */
@media (max-width: 768px) {
    .reviews-google-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .reviews-google-btn i {
        font-size: 1rem;
    }
}

/* Stili per il placeholder di caricamento */
@keyframes placeholder-glow {
    0% { background-color: #e0e0e0; }
    50% { background-color: #f0f0f0; }
    100% { background-color: #e0e0e0; }
}

.review-card-placeholder {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
}

.placeholder-line {
    height: 1rem;
    background-color: #e0e0e0;
    margin-bottom: 1rem;
    border-radius: 4px;
    animation: placeholder-glow 1.5s infinite;
}

.review-error {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin: 1rem 0;
}

.review-error p {
    margin: 0.5rem 0;
    color: #6c757d;
}

.review-error p:first-child {
    font-weight: 600;
    color: #495057;
}

/* ============== RESPONSIVE DESIGN - TABLET & SMALL DESKTOP ============== */

@media (max-width: 1200px) {
    /* --- Navigazione --- */
    .nav-container {
        padding-left: 2vw !important; /* Riduci padding laterale */
    }
    .nav-menu {
        gap: 0.8rem; /* Riduci spazio tra elementi menu */
    }
    .nav-menu a {
        padding: 0.4rem 0.8rem; /* Riduci padding interno link */
        font-size: 0.95rem; /* Riduci leggermente il font */
    }

    /* --- Logo --- */
    .logo img {
        height: 60px !important; /* Riduci altezza logo */
        padding: 0.4rem 1.2rem !important; /* Riduci padding logo */
        margin-left: -2vw !important;
        margin-right: 1rem !important;
    }
    .header.scrolled .logo img {
        height: 55px !important; /* Riduci altezza logo in scroll */
    }

    /* --- Hero Section --- */
    .hero {
        align-items: center; /* Centra gli elementi verticalmente */
        padding-top: 15vh;
        padding-bottom: 5vh;
        flex-direction: column; /* Impila gli elementi */
        gap: 2rem; /* Aggiungi spazio tra overlay e banner */
        justify-content: center; /* Centra il contenuto quando non ci sono banner */
    }

    /* Quando ci sono banner attivi, posiziona il contenuto in alto */
    .hero.has-banners {
        justify-content: flex-start;
    }

    .hero-overlay {
        margin: 0;
        max-width: 90%;
        order: 1; /* Posiziona il contenuto prima dei banner */
        z-index: 10; /* Assicura che sia sopra i banner */
    }

    /* --- Hiring Banner (per tablet) --- */
    .hero .hiring-banner {
        display: block !important; /* Assicurati che sia visibile */
        position: relative; /* Rimuovi posizionamento assoluto */
        top: auto;
        right: auto;
        transform: none; /* Rimuovi trasformazione per tablet */
        backdrop-filter: none; /* Rimuovi blur per performance/look */
        background: #fff; /* Sfondo solido per leggibilità */
        max-width: 400px;
        margin: 1rem auto; /* Centra il banner e aggiungi spazio */
        order: 2; /* Posiziona il banner dopo il contenuto */
        z-index: 5; /* Assicura che sia sotto il contenuto principale */
    }

    .hero .closure-banner {
        display: block !important; /* Assicurati che sia visibile */
        position: relative; /* Rimuovi posizionamento assoluto */
        top: auto;
        right: auto;
        transform: none; /* Rimuovi trasformazione per tablet */
        backdrop-filter: none; /* Rimuovi blur per performance/look */
        max-width: 400px;
        margin: 1rem auto; /* Centra il banner e aggiungi spazio */
        order: 2; /* Posiziona il banner dopo il contenuto */
        z-index: 5; /* Assicura che sia sotto il contenuto principale */
    }

    /* Nascondi sempre le sezioni mobile separate */
    .hiring-section-mobile,
    .closure-section-mobile {
        display: none !important;
    }

    /* Assicurati che i banner non si sovrappongano al contenuto su tablet */
    .hero .hiring-banner,
    .hero .closure-banner {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        margin: 1rem auto !important;
        max-width: 400px !important;
        order: 2 !important;
        z-index: 5 !important;
    }

    /* Assicurati che il banner di chiusura rimanga sempre all'interno della hero section */
    .closure-banner {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        max-width: 90% !important;
        margin: 1rem auto !important;
        z-index: 5 !important;
    }
}

@media (max-width: 768px) {
    /* --- Tipografia e Spaziature Generali --- */
    body {
        -webkit-text-size-adjust: 100%; /* Previene zoom del testo su iOS */
    }

    section {
        padding: 3rem 1rem; /* Padding ridotto per le sezioni */
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.4rem; }

    /* --- Header e Navigazione --- */
    .header .logo img {
        height: 50px !important;
        padding: 0.3rem 1rem !important;
        margin-right: 1rem !important;
    }
    .nav-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .nav-toggle span {
        background: #333; /* Icona hamburger più visibile su header bianco */
    }
    .header.scrolled .nav-toggle span {
        background: #333;
    }

    /* --- Hero Section --- */
    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
        justify-content: center;
        align-items: center;
        padding-top: 12vh;
        min-height: 100vh;
        position: relative;
    }
    .hero-overlay {
        margin: 0;
        margin-top: 0;
        padding: 1.5rem;
        position: relative;
        z-index: 5;
    }
    .hero-overlay h1 {
        font-size: 1.8rem;
    }
    .hero-overlay p {
        font-size: 1rem;
    }

    /* --- Sezione About Us --- */
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image {
        height: 300px;
    }
    .about-badge {
        left: 10px;
        bottom: 10px;
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
    }
    .about-badge strong {
        font-size: 1.8rem;
    }

    /* --- Form di Assunzione (Hiring) --- */
    .hiring-form-grid {
        grid-template-columns: 1fr;
    }
    .hiring-form-grid .grid-col-span-3 {
        grid-column: span 1;
    }
    .hiring-modal .modal-content {
        max-width: 100%;
        width: 95%;
        margin: auto;
    }

    /* --- Layout a Griglia --- */
    .press-cards, .delivery-cards, .awards-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* --- Sezione Contatti --- */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* --- Footer --- */
    .footer-content {
        text-align: left;
    }
    .social-links {
        justify-content: flex-start;
    }
    
    /* Rimuoviamo il posizionamento assoluto che fa uscire il banner dalla hero section */
    /* Il banner ora viene gestito dalle regole flexbox nella hero section */
}

/* Specifico per dispositivi con schermi più grandi (come Pixel 8 Pro) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        padding-top: 10vh;
        justify-content: center;
        align-items: center;
    }
    
    .hero-overlay {
        margin-top: 0;
        padding: 2rem;
    }
    
    /* Il banner di chiusura ora viene gestito dalle regole flexbox nella hero section */
}

/* Per dispositivi molto grandi (tablet landscape, schermi medi) */
@media (min-width: 1024px) and (max-width: 1200px) {
    .hero {
        padding-top: 8vh;
        justify-content: center;
        align-items: center;
    }
    
    .hero-overlay {
        margin-top: 0;
        padding: 2.5rem;
    }
    
    /* Il banner di chiusura ora viene gestito dalle regole flexbox nella hero section */
}

/* Forzo lo sfondo bianco anche quando il menu è scrollato su mobile */
.header.scrolled .nav-menu {
    background: #fff !important;
}

/* --- Hero Section --- */
.hero {
    padding-left: 1rem;
} 

/* PDF Menu Modal Styles */
.pdf-modal-content {
    max-width: 95vw;
    max-height: 95vh;
    width: 90vw;
    height: 90vh;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pdf-modal-content h2 {
    text-align: center;
    font-size: 2rem;
    margin: 1.5rem 0 1rem 0;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.pdf-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 2rem 1rem 2rem;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.pdf-control-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 8px;
    background: var(--white);
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1rem;
}

.pdf-control-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.pdf-control-btn:active {
    transform: translateY(0);
}

.pdf-container {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: var(--white);
}

/* Responsive design per la modale PDF */
@media (max-width: 768px) {
    .pdf-modal-content {
        width: 95vw;
        height: 95vh;
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .pdf-modal-content h2 {
        font-size: 1.5rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .pdf-controls {
        padding: 0 1rem 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .pdf-control-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pdf-modal-content {
        width: 98vw;
        height: 98vh;
        max-width: 98vw;
        max-height: 98vh;
    }
    
    .pdf-controls {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .pdf-control-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* Regola generale per assicurarsi che le modali non siano mai visibili quando non attive */
.modal:not(.active) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Regola specifica per mobile per forzare il nascondimento delle modali */
@media (max-width: 768px) {
    .modal:not(.active) {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        z-index: -1 !important;
    }
    
    .modal.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: fixed !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 2000 !important;
    }
}

/* Miglioramento allineamento radio-group per il form hiring */
.hiring-form-grid .radio-group {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.hiring-form-grid .radio-group label {
    display: flex;
    align-items: center;
    gap: 0.4em;
    font-weight: 500;
    font-size: 1em;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .hiring-form-grid .radio-group {
        gap: 1.2rem;
    }
}

/* Disponibilità giorni più compatta nel form hiring */
.hiring-form-grid .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2.2rem;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.hiring-form-grid .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.4em;
    font-weight: 500;
    font-size: 1em;
    margin-bottom: 0;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .hiring-form-grid .checkbox-group {
        gap: 0.7rem 1.2rem;
    }
}

.footer-btn {
    display: inline-block;
    background: #7a2323;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.8rem 2rem;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 1rem;
    text-decoration: none;
    transition: background 0.2s;
}
.footer-btn:hover {
    background: #a02d2d;
    color: #fff;
}

/* --- MODALE IMMAGINI MENU --- */
.menu-images-modal-content {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.menu-images-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    color: #7a2323;
    margin-bottom: 1.2rem;
    text-align: center;
}
.menu-images-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}
.menu-img-nav-btn, .menu-img-zoom-btn {
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #7a2323;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.menu-img-nav-btn:hover, .menu-img-zoom-btn:hover {
    background: #7a2323;
    color: #fff;
    transform: scale(1.08);
}
.menu-img-zoom-controls {
    display: flex;
    gap: 0.5rem;
}
.menu-images-gallery {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    margin-bottom: 0.5rem;
}
#menuImageActive {
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: #f8f8f8;
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    transition: transform 0.2s;
}
.menu-img-pagination {
    font-size: 1.1rem;
    color: #7a2323;
    font-family: 'Poppins', sans-serif;
    margin-top: 0.5rem;
}
@media (max-width: 900px) {
    .menu-images-modal-content {
        max-width: 98vw;
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
    }
    .menu-images-gallery {
        min-height: 220px;
    }
    #menuImageActive {
        max-height: 40vh;
    }
}

/* --- Nuova sezione anteprima menu completo --- */
.menu-full-preview {
    margin: 3.5rem auto 0 auto;
    max-width: 900px;
    text-align: center;
}
.menu-full-badge {
    display: inline-block;
    background: #7a2323;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 20px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin-top: 0.5rem;
}
.menu-pages-cards {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.menu-page-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    padding: 1.2rem 1.2rem 1.1rem 1.2rem;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.menu-page-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.menu-page-thumb {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ececec;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.menu-page-card:hover .menu-page-thumb {
    box-shadow: 0 12px 36px rgba(0,0,0,0.18);
    border-color: #d4af37;
}
.menu-page-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s;
    background: #fff;
}
.menu-page-card:hover .menu-page-thumb img {
    transform: scale(1.09);
}
.menu-page-zoom-icon {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(122,35,35,0.98);
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    opacity: 0.98;
    pointer-events: none;
    border: 2px solid #fff;
}
@media (max-width: 900px) {
    .menu-pages-cards {
        flex-direction: column;
        gap: 1.2rem;
    }
    .menu-page-card {
        width: 98vw;
        min-width: unset;
    }
    .menu-page-thumb {
        height: 260px;
    }
    .menu-page-zoom-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
        bottom: 12px;
        right: 12px;
    }
}
.menu-page-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
    color: #7a2323;
    font-weight: 600;
    margin-top: 0.2rem;
}

/* --- Modale fullscreen pagina menu --- */
.menu-page-modal-content {
    max-width: 98vw;
    max-height: 98vh;
    width: 98vw;
    height: 98vh;
    background: #181818;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}
.menu-page-modal-imgbox {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2.5vh 0 1.5vh 0;
}
#menuPageModalImg {
    max-width: 96vw;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    background: #fff;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
    transform-origin: center center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: none; /* Disable all browser touch actions */
    -webkit-touch-callout: none; /* Prevent callout on long press */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
    -webkit-user-drag: none; /* Prevent dragging */
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

#menuPageModalImg.zoomed,
#menuPageModalImg.zoomed-2x,
#menuPageModalImg.zoomed-3x {
    cursor: grab;
}

#menuPageModalImg.zoomed:active,
#menuPageModalImg.zoomed-2x:active,
#menuPageModalImg.zoomed-3x:active {
    cursor: grabbing;
}

#menuPageModalImg.zoomed {
    cursor: grab;
    transform: scale(2);
}

#menuPageModalImg.zoomed-2x {
    cursor: grab;
    transform: scale(3);
}

#menuPageModalImg.zoomed-3x {
    cursor: grab;
    transform: scale(4);
}

/* Classe per il panning */
#menuPageModalImg.panning {
    transition: none;
}

/* Classe per il pinch to zoom */
#menuPageModalImg.pinching {
    transition: none;
}
.menu-page-modal-controls {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5vh;
    position: relative;
}

.menu-page-modal-controls::after {
    content: attr(data-zoom-level);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.menu-page-modal-controls.show-zoom-level::after {
    opacity: 1;
}

/* Indicatore per il panning */
.menu-page-modal-controls::before {
    content: "Trascina per navigare";
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.menu-page-modal-controls.show-pan-hint::before {
    opacity: 1;
}
.menu-page-modal-controls .menu-img-zoom-btn {
    background: #fff;
    color: #7a2323;
    border: none;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    font-size: 1.7rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.menu-page-modal-controls .menu-img-zoom-btn:hover {
    background: #7a2323;
    color: #fff;
    transform: scale(1.08);
}
@media (max-width: 900px) {
    .menu-page-modal-content {
        max-width: 100vw;
        max-height: 100vh;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
    .menu-page-modal-imgbox {
        padding: 1vh 0 1vh 0;
    }
    #menuPageModalImg {
        max-width: 99vw;
        max-height: 70vh;
        touch-action: none; /* Disable all browser touch actions */
        -webkit-touch-callout: none; /* Prevent callout on long press */
        -webkit-tap-highlight-color: transparent; /* Remove tap highlight */
        -webkit-user-drag: none; /* Prevent dragging */
        -khtml-user-drag: none;
        -moz-user-drag: none;
        -o-user-drag: none;
        user-drag: none;
    }
    .menu-page-modal-controls .menu-img-zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* --- Galleria carousel menu --- */
.menu-gallery-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 2.5rem auto 0 auto;
    max-width: 900px;
    position: relative;
}
.menu-gallery-arrow {
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #7a2323;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 2;
}
.menu-gallery-arrow:hover {
    background: #7a2323;
    color: #fff;
    transform: scale(1.08);
}
.menu-gallery-track {
    display: flex;
    gap: 2.2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    max-width: 600px;
}
.menu-gallery-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    padding: 1.2rem 1.2rem 1.1rem 1.2rem;
    min-width: 240px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}
.menu-gallery-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.menu-gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    border-radius: 10px;
    background: #f8f8f8;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    transition: transform 0.2s;
}
.menu-gallery-item:hover img {
    transform: scale(1.07);
}
.menu-gallery-zoom-icon {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: rgba(122,35,35,0.92);
    color: #fff;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
    opacity: 0.92;
    pointer-events: none;
}
.menu-gallery-label {
    font-family: 'Poppins', sans-serif;
    font-size: 1.08rem;
    color: #7a2323;
    font-weight: 600;
    margin-top: 0.2rem;
}
@media (max-width: 900px) {
    .menu-gallery-track {
        max-width: 95vw;
        gap: 1.2rem;
    }
    .menu-gallery-item {
        min-width: 240px;
        max-width: 260px;
    }
    .menu-gallery-item img {
        height: 180px;
    }
    .menu-gallery-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

.menu-menu-images-simple {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin: 2.5rem 0 2.5rem 0;
    flex-wrap: wrap;
}
.menu-simple-thumb {
    width: 100%;
    height: 250px;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.18s;
    box-shadow: none;
    border: none;
    background: #fff;
    display: block;
}
.menu-simple-thumb:hover {
    transform: scale(1.03);
}
@media (max-width: 900px) {
    .menu-menu-images-simple {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .menu-simple-thumb {
        width: 100%;
        max-width: 100%;
        height: 180px;
        border-radius: 12px;
    }
}

.menu-full-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #7a2323;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    border-bottom: none !important;
}

.menu-full-menu-cards {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.menu-full-title, .menu-menu-images-simple, .menu-simple-thumb {
    display: none !important;
}

.menu-full-menu-cards-wrapper {
    margin-top: 3.5rem;
    margin-bottom: 2.5rem;
}
.menu-full-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #7a2323;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    display: block !important;
    border-bottom: none !important;
}
.menu-full-title, .menu-menu-images-simple, .menu-simple-thumb {
    /* display: none !important; */
}

/* Enhanced "Discover the full menu" section styling */
.menu-full-menu-cards-wrapper {
    margin-top: 3.5rem;
    margin-bottom: 2.5rem;
}

.menu-full-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #7a2323;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    display: block !important;
    border-bottom: none !important;
}

.menu-full-menu-cards {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

/* Solo effetto zoom sulle immagini, mantenendo le dimensioni originali */
.menu-full-menu-cards .menu-card-img {
    transition: transform 0.3s ease;
}

.menu-full-menu-cards .menu-card:hover .menu-card-img {
    transform: scale(1.05);
}

.close {
    top: 15px;
    right: 20px;
    font-size: 28px;
    width: 45px;
    height: 45px;
}

/* Mantieni lo stesso stile della X per la modale del menu anche su mobile */
.menu-page-modal-content .close {
    top: 20px;
    right: 25px;
    font-size: 32px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.menu-page-modal-content .close:hover {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.about-badge strong {
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    margin-top: 0.2rem;
}

/* Stile per la sezione filosofia separata */
.about-philosophy {
    grid-column: 1 / -1;
}

.about-philosophy h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
}

.about-philosophy p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    text-align: left;
}

@media (max-width: 900px) {
    .about-container {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .about-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas: 
            "text"
            "image"
            "philosophy";
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .about-text {
        grid-area: text;
    }
    
    .about-image-container {
        grid-area: image;
        justify-content: center;
    }
    
    .about-philosophy {
        grid-area: philosophy;
    }
    
    .about-badge {
        left: 20px;
        bottom: 20px;
        padding: 1rem 1.5rem;
    }
    
    .about-image {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
}

/* CLOSURE BANNER */
    .closure-banner {
        position: absolute;
        top: 50%;
        right: 5%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, #7a2323 0%, #8b2a2a 100%);
        border-radius: 12px;
        padding: 1.8rem;
        box-shadow: 0 8px 25px rgba(122, 35, 35, 0.25);
        max-width: 300px;
        backdrop-filter: blur(8px);
        border: 2px solid #ffffff;
        display: none !important; /* Hidden by default, managed by JS */
        animation: closurePulse 3s infinite;
        z-index: 10;
    }

    /* Stile responsive per mobile */
    @media (max-width: 768px) {
        /* Modifica il layout della hero section per mobile */
        .hero {
            flex-direction: column;
            justify-content: center; /* Centra il contenuto quando non ci sono banner */
            padding-top: 8vh;
            padding-bottom: 2rem;
        }

        /* Quando ci sono banner attivi, posiziona il contenuto in alto e aggiungi più spazio dal logo */
        .hero.has-banners {
            justify-content: flex-start;
            padding-top: 15vh; /* Aumenta il padding-top quando ci sono banner */
        }

        .hero-overlay {
            position: relative;
            z-index: 10;
            margin-bottom: 1rem;
            order: 1; /* Posiziona il contenuto prima dei banner */
        }

        /* Aggiungi più spazio sopra l'hero-overlay quando ci sono banner */
        .hero.has-banners .hero-overlay {
            margin-top: 2rem; /* Aggiungi spazio extra sopra il contenuto quando ci sono banner */
        }

        .hero .hiring-banner,
        .hero .closure-banner {
            position: relative;
            top: auto;
            right: auto;
            transform: none;
            margin: 1rem auto;
            max-width: 95%;
            padding: 1.5rem;
            z-index: 5;
            order: 2; /* Posiziona i banner dopo il contenuto */
        }

        .hero .hiring-banner {
            background: #fff;
            backdrop-filter: none;
        }

        .hero .closure-banner {
            background: linear-gradient(135deg, #7a2323 0%, #8b2a2a 100%);
            backdrop-filter: none;
            animation: none; /* Disabilita l'animazione su mobile per performance */
        }
    }

.closure-section-mobile {
    display: none !important; /* Hidden by default on desktop */
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #7a2323 0%, #8b2a2a 100%);
}

.closure-content {
    text-align: center;
    color: white;
}

.closure-badge {
    background: #ffffff;
    color: #7a2323;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 1rem;
    animation: closureBadgePulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.closure-content h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    animation: closureTitleShake 4s infinite;
}

.closure-message {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    white-space: pre-line;
    text-align: center;
    margin-top: 0.8rem;
}

@keyframes closurePulse {
    0% {
        box-shadow: 0 8px 25px rgba(122, 35, 35, 0.25);
        transform: translateY(-50%) scale(1);
    }
    50% {
        box-shadow: 0 10px 30px rgba(122, 35, 35, 0.35);
        transform: translateY(-50%) scale(1.01);
    }
    100% {
        box-shadow: 0 8px 25px rgba(122, 35, 35, 0.25);
        transform: translateY(-50%) scale(1);
    }
}

@keyframes closureBadgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }
}

@keyframes closureTitleShake {
    0%, 90%, 100% {
        transform: translateX(0);
    }
    95% {
        transform: translateX(-2px);
    }
    97% {
        transform: translateX(2px);
    }
}

@keyframes closureSignatureGlow {
    0%, 100% {
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    50% {
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5), 0 0 10px rgba(255, 215, 0, 0.8);
    }
}

.hiring-section-mobile {
    display: none; /* Hidden by default on desktop */
    padding: 2rem 1rem;
    background: #f8f9fa;
}