/* Importazione font Myriad Pro (con file .otf) */
@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Myriad Pro';
    src: url('../fonts/MyriadPro-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* Stile generale */
:root {
    --primary-color: #f39225; /* Aromas */
    --secondary-color: #f8f1e5; /* Beige chiaro */
    --text-color: #333;
    --light-text: #fff;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --light-overlay: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

/* Ottimizzazioni touch per mobile */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .nav-link:hover,
    .chef-card:hover,
    .gallery-item:hover,
    .info-card:hover,
    .contact-info:hover,
    .contact-form:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.95);
    }
    
    .nav-link:active {
        color: var(--secondary-color);
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Myriad Pro', 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
    height: 90px; /* Definito esplicitamente l'altezza dell'header */
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 60px;
    width: auto;
    transition: var(--transition);
    content: url('../img/logo orizzontale + claim.png');
}

.header.scrolled .logo-img {
    max-height: 50px;
    content: url('../img/logo-scroll.png');
}

.logo h1 {
    color: var(--light-text);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 25px;
}

.nav-link {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--light-text);
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Sezioni */
.section {
    min-height: 100vh;
    padding: 70px 0;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Ottimizzazioni mobile per background */
@media (max-width: 768px) {
    .section {
        background-attachment: scroll; /* Migliore performance su mobile */
        background-size: cover;
        background-position: center center;
    }
}

@media (max-width: 576px) {
    .section {
        background-attachment: scroll;
        background-size: cover;
        background-position: center 30%; /* Posizionamento ottimizzato per mobile */
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-overlay); /* overlay generale */
    z-index: 1;
}

/* Overlay specifico per la sezione Information */
.info-section .overlay {
    background-color: var(--dark-overlay);
}

.section-content {
    position: relative;
    z-index: 2;
    color: var(--light-text);
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
}

/* Contact section text alignment */
.contact .contact-info {
    text-align: left;
}

.section h2 {
    font-size: 2.5rem;
    color: #f39225;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section p {
    font-size: 1.5rem;
    padding: 0px;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    padding-top: 0; /* Rimosso padding-top */
    margin-top: 90px; /* Aggiungiamo un margin-top uguale all'altezza dell'header */
    background-position: center 25%; /* Aggiustato il posizionamento dello sfondo */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--light-text);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 180px; /* Aumentato ulteriormente il padding per abbassare il testo */
}

.hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero .overlay {
    background-color: rgba(0, 0, 0, 0.4); /* Overlay più leggero per vedere meglio l'immagine */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: #be6600;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
}

.btn-secondary:hover {
    background-color: var(--light-text);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* About Us Section */
.about .section-content {
    text-align: center;
}

/* Where Section */
.where {
    padding-top: 100px;
}

.where .section-content h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.where .section-content h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.where .section-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.wine-dine-container {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    margin-top: 150px;
    margin-bottom: 30px;
    position: relative;
    z-index: 10; /* Valore z-index più alto per garantire che sia sopra altri elementi */
}

.wine-dine-logo {
    margin-bottom: 30px;
    margin-top: 120px; /* Margine aumentato ma non troppo come prima */
    position: relative;
    z-index: 10; /* Aumentato z-index per assicurare che sia sopra l'header */
}

.wine-dine-img {
    max-width: 850px; /* Ingrandito ulteriormente da 550px a 850px */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Tastings Section */
.tasting-options {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 25px;
    margin-bottom: 30px;
}

.option {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    width: 250px;
    transition: var(--transition);
}

.option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.option h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Cooking Class Section */
.cooking-class-description {
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
    margin-top: -10px;
    color: var(--light-text);
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cooking-class-description p {
    margin-bottom: 1px;
    font-size: 1.15rem;
    line-height: 1.5;
}

/* Team di chef */
.chef-team {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 15px;
    margin-bottom: 20px;
}

.chef-card {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    text-align: center;
    transition: var(--transition);
}

.chef-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.chef-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.chef-name {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.chef-role {
    color: var(--light-text);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.chef-bio {
    font-size: 0.85rem;
    color: var(--light-text);
    line-height: 1.4;
    margin-top: 5px;
}

/* Tastings Section - Information Blocks */
.info-block {
    background-color: var(--dark-overlay);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: var(--light-text);
}

.info-block h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.info-block p {
    margin-bottom: 8px;
}

.time-info, .group-info, .price-info, .couple-info, .menu-info, .language-info {
    transition: var(--transition);
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Gallery Section - Nascosta temporaneamente */
#section-5 {
    display: none;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonial-slider {
    margin-top: 25px;
    position: relative;
}

.testimonial {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    display: none;
}

.testimonial.active {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

/* Sezioni specifiche */
.hero, .about, .wines, .tastings, .cooking-class, .gallery, .testimonials, .contact {
}

/* Contact Section */
.contact {
    min-height: auto;
    padding-top: 60px; /* Ridotto da 80px */
    padding-bottom: 40px; /* Ridotto da 100px */
    align-items: flex-start;
    display: block;
}

.contact .section .overlay {
    background-color: transparent;
}


.contact .section-content {
    text-align: center;
    padding-top: 20px;
    margin-top: 0px;
    padding-bottom: 30px; /* Ridotto da 50px */
}

.contact .section-content h2 {
    text-align: center;
    margin-bottom: 15px; /* Ridotto da 25px */
    margin-top: 0px;
}

.contact .section-content h2::after {
    left: 50%; /* Ricentrato la linea sotto il titolo */
    transform: translateX(-50%); /* Ricentrato la linea */
}

.contact .section-content p {
    text-align: left; /* Centrato il paragrafo */
    margin-bottom: 5px; /* Ridotto ulteriormente da 10px a 5px */
}

.contact-intro {
    text-align: center !important;
    margin-bottom: 25px; /* Ridotto da 40px */
    margin-top: 0px;
    font-size: 1.1rem;
    color: var(--light-text);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
    margin-top: 20px; /* Ridotto da 30px */
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 25px 15px;
    border-radius: 10px;
    border: 1px solid var(--secondary-color);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    flex: 1;
    min-width: 300px;
    text-align: left; /* Mantiene l'allineamento generale a sinistra per la struttura */
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.contact-info::before {
    content: 'Our Contacts';
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px 15px;
    font-size: 1.2rem;
    color: var(--secondary-color);
    border-radius: 5px;
    font-weight: bold;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin-bottom: 10px;
}

.info-item p {
    margin-bottom: 5px;
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--light-text);
    text-align: right; /* Allineato a destra il testo dei contatti */
    flex: 1; /* Permette al testo di occupare tutto lo spazio disponibile */
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    min-width: 25px;
    text-align: center;
    margin-top: 3px;
}

.info-item img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-top: 3px;
}

.info-item p {
    color: var(--light-text);
    line-height: 1.5;
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.info-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    width: 100%;
    justify-content: left; /* Ricentrato i social links */
}

.social-links a {
    display: flex;
    align-items: center;
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-links a i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.social-links a img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.contact-form {
    flex: 2;
    min-width: 300px;
    background-color: rgba(243, 146, 37, 0.1);
    padding: 30px 25px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.contact-form::before {
    content: 'Write to Us';
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    font-size: 1rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color);
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--light-text);
    padding: 25px 0 20px; /* Ridotto padding */
    position: relative;
    z-index: 10;
    margin-top: 20px; /* Ridotto da 50px */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px; /* Aggiunto max-width per centrare */
    margin: 0 auto; /* Centrato il contenuto */
    padding: 0 15px; /* Aggiunto padding laterale */
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
    margin: 0; /* Rimosso margine */
}

.footer-bottom-links {
    display: flex;
    gap: 15px; /* Usato gap invece di margin-left */
}

.footer-bottom-links a {
    color: #777;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .section h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Mobile Ottimizzato - Tablet */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-list {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }
    
    .nav-list.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-list li {
        margin: 20px 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
    
    /* Sezioni mobile */
    .section {
        padding: 40px 0;
        background-attachment: scroll;
        min-height: auto;
    }
    
    .section-content {
        padding: 20px 15px;
    }
    
    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .section p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    /* Hero ottimizzato */
    .hero {
        padding-top: 0;
        margin-top: 90px;
        background-position: center center;
        background-size: cover;
        min-height: 70vh;
    }
    
    .hero-content {
        padding-top: 80px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    /* Layout flessibile */
    .wine-categories,
    .tasting-options,
    .event-list,
    .chef-team {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .category,
    .option,
    .event,
    .chef-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 15px;
    }
    
    /* Contact mobile */
    .contact {
        padding: 40px 0;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
        min-width: auto;
        margin-bottom: 20px;
    }
    
    .info-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
        padding: 10px 0;
    }
    
    .info-item p {
        font-size: 1rem;
        text-align: left;
    }
    
    /* Footer mobile */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 0 15px;
    }
    
    .footer-bottom-links {
        margin-top: 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom-links a {
        margin: 5px 8px;
    }
    
    /* Menu container mobile */
    .menu-container {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 15px;
    }
    
    .menu-item {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    /* Info blocks mobile */
    .info-blocks {
        flex-direction: column;
        gap: 15px;
    }
    
    .info-block {
        width: 100%;
        min-width: auto;
        padding: 20px 15px;
    }
    
    /* Wine & Dine mobile */
    .wine-dine-container {
        margin-top: 60px;
        padding: 20px 15px;
    }
    
    .wine-dine-logo {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    
    .wine-dine-img {
        max-width: 100%;
        height: auto;
    }
    
    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }
    
    .gallery-item {
        height: 180px;
    }
}

/* Mobile Piccolo - Smartphone */
@media (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 10px;
    }
    
    /* Header mobile piccolo */
    .header {
        height: 80px;
        padding: 10px 0;
    }
    
    .logo-img {
        max-height: 45px;
    }
    
    .nav-list {
        top: 80px;
        padding: 20px 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 8px 15px;
    }
    
    /* Hero mobile piccolo */
    .hero {
        margin-top: 80px;
        min-height: 60vh;
        background-position: center center;
    }
    
    .hero-content {
        padding-top: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-content h1 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    /* Sezioni mobile piccolo */
    .section {
        padding: 30px 0;
    }
    
    .section-content {
        padding: 15px 10px;
    }
    
    .section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .section p {
        font-size: 1rem;
        padding: 0 5px;
        line-height: 1.5;
    }
    
    /* Bottoni mobile piccolo */
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 25px;
    }
    
    /* Cards mobile piccolo */
    .category,
    .option,
    .event,
    .chef-card,
    .info-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
        padding: 15px;
    }
    
    .chef-image {
        width: 120px;
        height: 120px;
    }
    
    /* Gallery mobile piccolo */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 10px;
        padding: 0 10px;
    }
    
    .gallery-item {
        height: 140px;
        border-radius: 8px;
    }
    
    /* Contact mobile piccolo */
    .contact-info,
    .contact-form {
        padding: 20px 15px;
    }
    
    .contact-info::before,
    .contact-form::before {
        font-size: 1rem;
        padding: 3px 10px;
    }
    
    .info-item {
        padding: 8px 0;
        gap: 8px;
    }
    
    .info-item i,
    .info-item img {
        min-width: 20px;
        width: 20px;
        height: 20px;
        font-size: 1.2rem;
    }
    
    .info-item p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    /* Wine & Dine mobile piccolo */
    .wine-dine-container {
        margin-top: 40px;
        padding: 15px 10px;
    }
    
    .wine-dine-logo {
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .wine-dine-img {
        max-width: 100%;
        height: auto;
    }
    
    /* Menu mobile piccolo */
    .menu-container {
        padding: 10px;
        gap: 10px;
    }
    
    .menu-item {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .menu-category {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .menu-dish {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .menu-description {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .menu-wine {
        font-size: 0.9rem;
    }
    
    .wine-name {
        font-size: 1rem;
    }
    
    .wine-method {
        font-size: 0.85rem;
    }
    
    /* Footer mobile piccolo */
    .footer {
        padding: 20px 0 15px;
    }
    
    .footer-bottom {
        gap: 10px;
        padding: 0 10px;
    }
    
    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 0.8rem;
    }
    
    /* Scroll button mobile piccolo */
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }
    
    /* Info grid mobile piccolo */
    .info-grid {
        gap: 15px;
        margin-top: 25px;
        padding: 0 10px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .info-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Tastings Section - Overlay rimosso */

.info-blocks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.info-block {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: var(--light-text);
    width: calc(33.333% - 20px);
    min-width: 250px;
}

.menu-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0px;
    margin: 0px auto;
    max-width: 1200px;
    background-color: rgba(20, 8, 0, 0.6);
    padding: 5px 5px;
    border-radius: 5px;
    overflow-x: auto;
}

.menu-item {
    flex: 0 0 auto;
    width: 200px;
    padding: 10px;
    color: var(--light-text);
    text-align: left;
    background-color: transparent;
}

.menu-category {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.menu-dish {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--light-text);
}

.menu-description {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
    font-style: italic;
    color: var(--primary-color);
}

.menu-wine {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.wine-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 5px;
}

.wine-method {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.menu-note {
    background-color: rgba(20, 8, 0, 0.6);
    padding: 10px;
    border-radius: 5px;
    margin: 10px auto;
    max-width: 950px;
}

.menu-note p {
    font-size: 1rem;
    font-style: italic;
    text-align: center;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--light-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn:hover {
    background-color: #d77b10;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
    .section h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Information Section */
.info-section .section-content {
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px 25px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    text-align: left;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--secondary-color);
}

.info-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.info-card p strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.info-card p em {
    color: var(--primary-color);
    font-style: italic;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-card h3 {
        font-size: 1.2rem;
    }
}