/* Variables */
:root {
    --green: #2ECC71;
    --red: #E74C3C;
    --blue: #3498DB;
    --dark-green: #27AE60;
    --dark-red: #C0392B;
    --dark-blue: #2980B9;
    --light-gray: #f9f9f9;
    --dark-gray: #333;
    --medium-gray: #777;
    --font-primary: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--green);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Pulsante mappa */
.btn-map {
    background-color: var(--blue);
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
}

.btn-map i {
    margin-right: 8px;
    font-size: 1.1em;
}

.btn-map:hover {
    background-color: var(--dark-blue);
}

.btn-map-large {
    background-color: var(--blue);
    padding: 15px 40px;
    font-size: 1.1rem;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
}

.btn-map-large i {
    margin-right: 10px;
    font-size: 1.2em;
}

.btn-map-large:hover {
    background-color: var(--dark-blue);
}

/* About CTA */
.about-cta {
    margin-top: 40px;
    text-align: center;
}

/* Map CTA */
.map-cta {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 100;
    padding-top: 20px;
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
    margin-top: 50px;
    padding: 20px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    color: var(--dark-gray);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--green);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Header con logo asimmetrico e sfasamento verticale */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px; /* Altezza fissa per l'header */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 100%;
    position: relative;
}

/* Stile per il contenitore del logo con sfasamento e bordo circolare */
.logo-container {
    position: relative;
    height: 100px; /* Aumentato da 85px a 100px */
    width: 100px; /* Aumentato da 85px a 100px */
    margin-right: 30px;
    margin-top: 25px; /* Sposta il logo verso il basso */
    z-index: 1001; /* Sopra gli altri elementi */
}

/* Cerchio bianco dietro il logo */
.logo-container::before {
    content: '';
    position: absolute;
    top: -35px; /* Aumentato da -30px a -35px */
    left: -35px; /* Aumentato da -30px a -35px */
    right: -35px; /* Aumentato da -30px a -35px */
    bottom: -35px; /* Aumentato da -30px a -35px */
    background-color: white;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); /* Ombra leggermente più pronunciata */
}

.logo-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    border-radius: 0; /* Rimuovo il border-radius dal link per evitare tagli */
    overflow: visible; /* Rimuovo overflow:hidden per evitare tagli */
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Modifica l'hover per un effetto più contenuto */
.logo-link:hover .logo-img {
    transform: scale(1.03);
}

/* Stile per la navigazione principale */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    margin-right: 20px;
}

.main-nav ul li a {
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

.main-nav ul li a:hover {
    color: var(--blue);
}

/* Adattamenti per mobile */
@media (max-width: 768px) {
    header {
        height: 60px;
    }
    
    .logo-container {
        width: 85px; /* Aumentato da 70px a 85px */
        height: 85px; /* Aumentato da 70px a 85px */
        margin-top: 18px; /* Leggermente aumentato da 15px a 18px */
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
    }
    
    .logo-container::before {
        top: -30px; /* Aumentato da -25px a -30px */
        left: -30px; /* Aumentato da -25px a -30px */
        right: -30px; /* Aumentato da -25px a -30px */
        bottom: -30px; /* Aumentato da -25px a -30px */
    }
    
    .main-nav {
        order: 3;
    }
    
    .mobile-menu-btn {
        display: block;
        align-self: center;
        position: absolute;
        right: 20px;
        transition: transform 0.3s ease;
        z-index: 1002;
    }
}

/* Hero Section with centered content */
.hero {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero .container {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop background */
.desktop-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('backgroundimage.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0; /* Base layer */
}

/* Mobile video background with subtle overlay */
.mobile-video-container {
    display: none; /* Hidden by default */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0; /* Same as desktop-bg since they're alternatives */
}

#mobile-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Fill the entire width */
    height: 100%; /* Fill the entire height */
    object-fit: cover; /* Cover the entire area, maintaining aspect ratio */
    object-position: center; /* Center the video */
    display: none; /* Hide video element by default */
}

/* Mobile video background with subtle overlay */
.mobile-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.25) 0%, 
        rgba(0, 0, 0, 0.35) 50%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 5; /* Above video but below content */
    pointer-events: none; /* Allow clicks to pass through */
    display: block;
}

/* Hero section with clean, no-background design */
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 25px 20px;
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.hero-tagline {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: white;
    margin-bottom: 20px;
    padding: 8px 15px;
    border-radius: 30px;
    background-color: var(--green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

.hero-tagline:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Enhance text shadows for better visibility without backgrounds */
.hero h1 {
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8), 0 4px 20px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    hyphens: none;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 4px 15px rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: rgba(231, 76, 60, 0.15); /* Rosso trasparente */
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    background-color: rgba(231, 76, 60, 0.25); /* Rosso trasparente più intenso all'hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 15px 35px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center; /* Centra il testo */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature i {
    font-size: 1.5rem;
    color: white;
    background-color: var(--green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.feature span {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive improvements for hero section */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero .container {
        width: 95%;
        padding: 15px 10px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 20px 15px;
        margin: 0 auto;
        backdrop-filter: none;
        background-color: transparent;
        box-shadow: none;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* Hero section text sizes */
    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        padding: 6px 12px;
        margin-bottom: 15px;
        background-color: var(--green);
        color: white;
    }
    
    .hero h1 {
        font-size: 1.9rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }
    
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    /* Feature sizes */
    .feature i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature span {
        font-size: 0.9rem;
    }
    
    /* Show video background on mobile */
    .mobile-video-container {
        display: block;
        z-index: 0; /* Behind content */
    }
    
    #mobile-bg-video {
        display: block; /* Show video element on mobile */
    }
    
    .desktop-bg {
        display: none;
    }
    
    /* Ensure overlay is visible on mobile */
    .mobile-video-container::after {
        display: block;
    }
    
    /* Keep text shadows for better readability with overlay */
    .hero h1, 
    .hero p, 
    .hero-tagline {
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }
    
    /* Improve text readability */
    .hero h2, .hero p {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    header .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center; /* Assicura allineamento verticale */
    }
    
    .logo {
        justify-content: center;
        text-align: center;
        flex: 1;
    }
    
    .logo img {
        height: 45px;
        margin: 0 auto;
    }
    
    .mobile-menu-btn {
        display: block;
        align-self: center;
        position: absolute;
        right: 20px;
        transition: transform 0.3s ease;
        z-index: 1002;
    }
    
    .mobile-menu-btn:hover {
        transform: scale(1.1);
    }
    
    .mobile-menu-btn i {
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn.active i.fa-bars {
        display: none;
    }
    
    .mobile-menu-btn.active::after {
        content: "\f00d";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 1.5rem;
        color: var(--dark-gray);
    }
    
    /* Assicuriamo che l'header abbia uno z-index superiore al menu */
    header {
        position: relative;
        z-index: 1001; /* Superiore al menu mobile */
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: 0;
        visibility: hidden;
        opacity: 0;
        background-color: white;
        transition: opacity 0.6s ease, visibility 0.6s ease, max-height 0.6s ease;
        z-index: 999;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
        transform: translateY(-10px);
        margin: 0 auto;
        padding-bottom: 15px;
        border-radius: 0 0 15px 15px; /* Arrotonda i bordi inferiori */
    }
    
    .main-nav.active {
        max-height: 280px;
        height: auto;
        visibility: visible;
        opacity: 1;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Ombra più pronunciata */
        transform: translateY(0);
        transition: opacity 0.7s ease, visibility 0.7s ease, max-height 0.7s ease, transform 0.7s ease, box-shadow 0.7s ease;
        border: 1px solid rgba(0, 0, 0, 0.05); /* Bordo sottile */
        border-top: none; /* Rimuove il bordo superiore */
    }
    
    .main-nav ul {
        display: grid;
        grid-template-areas:
            "item1 item2"
            "item3 item4"
            "item5 item5";
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
        padding: 15px 10px;
        margin: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: transform 0.6s ease, opacity 0.6s ease;
    }
    
    .main-nav.active ul {
        transform: translateY(0);
        opacity: 1;
        transition-delay: 0.15s;
    }
    
    .main-nav ul li:nth-child(1) { 
        grid-area: item1; 
        justify-self: center;
    }
    .main-nav ul li:nth-child(2) { 
        grid-area: item2; 
        justify-self: center;
    }
    .main-nav ul li:nth-child(3) { 
        grid-area: item3; 
        justify-self: center;
    }
    .main-nav ul li:nth-child(4) { 
        grid-area: item4; 
        justify-self: center;
    }
    .main-nav ul li:nth-child(5) { 
        grid-area: item5; 
        justify-self: center;
    }
    
    .main-nav ul li {
        margin: 0;
        width: 100%;
        max-width: 140px;
        text-align: center;
        display: flex;
        justify-content: center;
        opacity: 0;
        transform: translateY(-15px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 8px 0;
        font-size: 0.95rem;
        text-align: center;
        width: 100%;
        transition: all 0.3s ease;
        background-color: rgba(0,0,0,0.03);
        border-radius: 5px;
    }
    
    .main-nav ul li a:hover {
        background-color: rgba(0,0,0,0.06);
    }
    
    .main-nav.active ul li:nth-child(1) { transition-delay: 0.15s; }
    .main-nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.active ul li:nth-child(3) { transition-delay: 0.25s; }
    .main-nav.active ul li:nth-child(4) { transition-delay: 0.25s; }
    .main-nav.active ul li:nth-child(5) { transition-delay: 0.35s; }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .item-image {
        height: 220px;
    }
    
    .btn-map-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .footer-links {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin: 15px 0 !important;
        text-align: center !important;
        flex-direction: row !important;
        align-items: stretch !important;
    }
    
    .footer-links a {
        font-size: 0.9rem !important;
        padding: 10px 5px !important;
        background-color: rgba(255, 255, 255, 0.05) !important;
        border-radius: 5px !important;
        margin: 0 !important;
    }
    
    .footer-links a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    .footer-links a::after {
        display: none !important;
    }
    
    .copyright {
        padding-top: 15px !important;
        margin-top: 10px !important;
        font-size: 0.8rem !important;
    }
    
    footer {
        padding: 40px 0 15px !important;
    }
    
    .footer-content {
        margin-bottom: 20px;
    }
    
    .footer-logo-img {
        height: 60px;
        margin: 0 auto 10px;
        display: block;
        background-color: white;
        padding: 8px;
        border-radius: 8px;
    }
    
    .footer-content {
        margin-bottom: 20px;
        flex-direction: column; /* Cambia la direzione in colonna su mobile */
        align-items: center; /* Centra gli elementi */
        gap: 15px; /* Aggiunge spazio tra logo e icone social */
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero .container {
        width: 100%;
        padding: 10px 8px;
    }
    
    .hero-content {
        padding: 15px 12px;
    }
    
    .hero h1 {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        padding: 5px 10px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .hero p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .hero-features {
        gap: 15px;
        margin-top: 12px;
    }
    
    .feature {
        width: 30%;
        min-width: 70px;
    }
    
    .feature i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature span {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
    
    .btn-secondary {
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 375px) {
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero .container {
        padding: 5px;
    }
    
    .hero-content {
        padding: 12px 10px;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        padding: 4px 8px;
        letter-spacing: 0.8px;
    }
    
    .hero p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-features {
        gap: 12px;
        margin-top: 10px;
    }
    
    .feature {
        width: 30%;
        min-width: 60px;
    }
    
    .feature i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature span {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 7px 16px;
        font-size: 0.85rem;
    }
    
    .btn-secondary {
        padding: 7px 16px;
        font-size: 0.85rem;
    }
}

/* Ensure text doesn't break strangely on any screen size */
@media (max-width: 420px) {
    .hero h1 {
        font-size: 1.65rem;
        line-height: 1.3;
        max-width: 100%;
        padding: 8px 10px;
        word-break: normal;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -ms-hyphens: none !important;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.7rem;
        line-height: 1.3;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -ms-hyphens: none !important;
        margin-bottom: 15px;
    }
}

@media (max-width: 375px) {
    .hero h1 {
        font-size: 1.4rem;
        hyphens: none !important;
        -webkit-hyphens: none !important;
        -ms-hyphens: none !important;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 350px;
    height: 350px;
    background-color: var(--blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 5rem;
    overflow: hidden; /* Ensure image doesn't overflow the circle */
    border: 8px solid white; /* Add white border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    transition: all 0.3s ease; /* Smooth transition when size changes */
}

/* Circular image style */
.circular-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Menu Section */
.menu {
    padding: 100px 0;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonne per riga */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.item-image {
    height: 280px; /* Elementi più grandi */
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Posizionamento dell'immagine */
.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Stile per i video nei menu */
.menu-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Effetto hover sull'immagine */
.item-image:hover .menu-img,
.item-image:hover .menu-video {
    transform: scale(1.05);
}

.item-content {
    padding: 25px;
}

.item-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--dark-gray);
}

.item-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Item image background */
.item-image.watermelon { background-color: #ff6b6b; }
.item-image.fruits { background-color: #48dbfb; }
.item-image.pesche { background-color: #ff9ff3; }
.item-image.macedonia { background-color: #1dd1a1; }
.item-image.tramezzini { background-color: #feca57; }
.item-image.birre { background-color: #54a0ff; }

/* Menu footer */
.menu-footer {
    text-align: center;
    margin-top: 40px;
    padding: 15px;
}

.menu-footer p {
    text-align: center;
    font-style: italic;
    color: var(--medium-gray);
    font-size: 1.2rem;
}

.smaller-text {
    font-size: 0.9rem !important;
    opacity: 0.8;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-placeholder {
    height: 250px;
    background-color: var(--medium-gray);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--green);
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Stile per il logo nel footer */
.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: none; /* Rimuovo il filtro che rendeva il logo bianco */
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto 10px 0;
    max-width: 100%;
    background-color: white; /* Aggiungo sfondo bianco per il logo */
    padding: 10px; /* Padding per creare spazio attorno al logo */
    border-radius: 10px; /* Bordi arrotondati */
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: none; /* Mantengo il logo nella sua colorazione originale */
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--red);
}

.footer-logo p {
    color: var(--green);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--blue);
    transform: translateY(-5px);
}

/* Footer links */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--green);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    margin-left: auto;
    padding: 8px;
    z-index: 1002;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .image-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .menu-items {
        grid-template-columns: repeat(2, 1fr); /* Mantiene 2 colonne su tablet */
        gap: 30px;
    }
    
    .item-image {
        height: 240px;
    }
}

@media (max-width: 768px) {
    /* Remove the overlay */
    .mobile-video-container::after {
        display: none;
    }
    
    /* Smaller stars for mobile */
    .rating-stars {
        font-size: 1.2rem;
    }
    
    .rating-value {
        font-size: 1.4rem;
        margin-left: 10px;
    }
    
    .review-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .total-reviews {
        font-size: 0.9rem;
    }
    
    /* Hero section completely transparent backgrounds */
    .hero h1, 
    .hero p, 
    .hero-tagline {
        background-color: transparent;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    
    .hero-content {
        background-color: transparent;
        box-shadow: none;
    }
    
    /* Show video background on mobile */
    .mobile-video-container {
        display: block;
        z-index: 0; /* Behind content */
    }
    
    #mobile-bg-video {
        display: block; /* Show video element on mobile */
    }
    
    .desktop-bg {
        display: none;
    }
    
    /* Ensure overlay is visible on mobile */
    .mobile-video-container::after {
        display: block;
    }
    
    /* Keep text shadows for better readability with overlay */
    .hero h1, 
    .hero p, 
    .hero-tagline {
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    }
    
    /* Improve text readability */
    .hero h2, .hero p {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    header .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center; /* Assicura allineamento verticale */
    }
    
    .logo {
        justify-content: center;
        text-align: center;
        flex: 1;
    }
    
    .logo img {
        height: 45px;
        margin: 0 auto;
    }
    
    .mobile-menu-btn {
        display: block;
        align-self: center;
        position: absolute;
        right: 20px;
        transition: transform 0.3s ease;
        z-index: 1002;
    }
    
    .mobile-menu-btn:hover {
        transform: scale(1.1);
    }
    
    .mobile-menu-btn i {
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn.active i.fa-bars {
        display: none;
    }
    
    .mobile-menu-btn.active::after {
        content: "\f00d";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 1.5rem;
        color: var(--dark-gray);
    }
    
    /* Assicuriamo che l'header abbia uno z-index superiore al menu */
    header {
        position: relative;
        z-index: 1001; /* Superiore al menu mobile */
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        max-height: 0;
        visibility: hidden;
        opacity: 0;
        background-color: white;
        transition: opacity 0.6s ease, visibility 0.6s ease, max-height 0.6s ease;
        z-index: 999;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
        transform: translateY(-10px);
        margin: 0 auto;
        padding-bottom: 15px;
        border-radius: 0 0 15px 15px; /* Arrotonda i bordi inferiori */
    }
    
    .main-nav.active {
        max-height: 280px;
        height: auto;
        visibility: visible;
        opacity: 1;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Ombra più pronunciata */
        transform: translateY(0);
        transition: opacity 0.7s ease, visibility 0.7s ease, max-height 0.7s ease, transform 0.7s ease, box-shadow 0.7s ease;
        border: 1px solid rgba(0, 0, 0, 0.05); /* Bordo sottile */
        border-top: none; /* Rimuove il bordo superiore */
    }
    
    .main-nav ul {
        display: grid;
        grid-template-areas:
            "item1 item2"
            "item3 item4"
            "item5 item5";
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
        padding: 15px 10px;
        margin: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: transform 0.6s ease, opacity 0.6s ease;
    }
    
    .main-nav.active ul {
        transform: translateY(0);
        opacity: 1;
        transition-delay: 0.15s;
    }
    
    .main-nav ul li:nth-child(1) { 
        grid-area: item1; 
        justify-self: center;
    }
    .main-nav ul li:nth-child(2) { 
        grid-area: item2; 
        justify-self: center;
    }
    .main-nav ul li:nth-child(3) { 
        grid-area: item3; 
        justify-self: center;
    }
    .main-nav ul li:nth-child(4) { 
        grid-area: item4; 
        justify-self: center;
    }
    .main-nav ul li:nth-child(5) { 
        grid-area: item5; 
        justify-self: center;
    }
    
    .main-nav ul li {
        margin: 0;
        width: 100%;
        max-width: 140px;
        text-align: center;
        display: flex;
        justify-content: center;
        opacity: 0;
        transform: translateY(-15px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 8px 0;
        font-size: 0.95rem;
        text-align: center;
        width: 100%;
        transition: all 0.3s ease;
        background-color: rgba(0,0,0,0.03);
        border-radius: 5px;
    }
    
    .main-nav ul li a:hover {
        background-color: rgba(0,0,0,0.06);
    }
    
    .main-nav.active ul li:nth-child(1) { transition-delay: 0.15s; }
    .main-nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.active ul li:nth-child(3) { transition-delay: 0.25s; }
    .main-nav.active ul li:nth-child(4) { transition-delay: 0.25s; }
    .main-nav.active ul li:nth-child(5) { transition-delay: 0.35s; }
    
    .menu-items {
        grid-template-columns: 1fr;
    }
    
    .item-image {
        height: 220px;
    }
    
    .btn-map-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .footer-links {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        margin: 15px 0 !important;
        text-align: center !important;
        flex-direction: row !important;
        align-items: stretch !important;
    }
    
    .footer-links a {
        font-size: 0.9rem !important;
        padding: 10px 5px !important;
        background-color: rgba(255, 255, 255, 0.05) !important;
        border-radius: 5px !important;
        margin: 0 !important;
    }
    
    .footer-links a:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
    }
    
    .footer-links a::after {
        display: none !important;
    }
    
    .copyright {
        padding-top: 15px !important;
        margin-top: 10px !important;
        font-size: 0.8rem !important;
    }
    
    footer {
        padding: 40px 0 15px !important;
    }
    
    .footer-content {
        margin-bottom: 20px;
    }
    
    .footer-logo-img {
        height: 60px;
        margin: 0 auto 10px;
        display: block;
        background-color: white;
        padding: 8px;
        border-radius: 8px;
    }
    
    .footer-content {
        margin-bottom: 20px;
        flex-direction: column; /* Cambia la direzione in colonna su mobile */
        align-items: center; /* Centra gli elementi */
        gap: 15px; /* Aggiunge spazio tra logo e icone social */
    }
}

@media (max-width: 576px) {
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .image-placeholder {
        width: 280px;
        height: 280px;
    }
}

/* Loading Overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-content {
    text-align: center;
    position: relative;
}

#loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Fallback Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-gray);
    border-top: 5px solid var(--green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Remove unused styles */
#animationCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Video Play Button (shown if autoplay is blocked) */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-btn i {
    font-size: 2rem;
    color: white;
}

.video-play-btn:hover {
    background-color: rgba(46, 204, 113, 0.7);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Social Section */
.social-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.social-icon-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 150px;
    height: 150px;
    justify-content: center;
}

.social-icon-large i {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.social-icon-large span {
    font-weight: 500;
    font-size: 1.1rem;
}

/* Stili specifici per ogni icona */
.social-icon-large.facebook i {
    color: #1877F2; /* Colore aggiornato di Facebook */
}

.social-icon-large.instagram i {
    color: #E4405F; /* Colore aggiornato di Instagram */
}

.social-icon-large.maps i {
    color: #EA4335; /* Colore di Google Maps */
}

/* Effetti hover */
.social-icon-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-icon-large:hover i {
    transform: scale(1.2);
}

/* Responsività */
@media (max-width: 768px) {
    .social-icons-large {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .social-icon-large {
        width: 100%;
        max-width: 300px;
        height: 120px;
        flex-direction: row;
        justify-content: flex-start;
        padding: 20px 30px;
    }
    
    .social-icon-large i {
        margin-bottom: 0;
        margin-right: 20px;
        font-size: 2.5rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: white;
}

/* Rating Summary */
.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.rating-stars {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.rating-stars i {
    color: #FFD700;
    margin: 0 1px;
}

.rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 12px;
    color: var(--dark-gray);
}

.total-reviews {
    color: var(--medium-gray);
    font-size: 1.1rem;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Review Card */
.review-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--green);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    margin-right: 10px;
    font-size: 0.85rem;
}

.reviewer-name h4 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--dark-gray);
}

.review-date {
    font-size: 0.75rem;
    color: var(--medium-gray);
    margin: 2px 0 0 0;
}

.review-stars {
    font-size: 0.8rem;
}

.review-stars i {
    color: #FFD700;
    margin-left: 1px;
}

/* Review Content */
.review-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--medium-gray);
    font-style: italic;
}

/* Responsive design for reviews */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Map Section */
.mapoutermaps {
    padding: 0;
    width: 100%;
    position: relative;
}

/* Add a title to the map section */
.mapoutermaps::before {
    content: 'Vieni a trovarci';
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    padding: 40px 0;
    color: var(--dark-gray);
    background-color: white;
}

/* Add underline to the title */
.mapoutermaps::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--green);
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    animation: bounce 2s infinite;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.3));
    padding: 20px 0 10px;
    z-index: 12; /* Sopra tutti gli altri elementi */
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.scroll-indicator a:hover {
    opacity: 1;
    transform: translateY(5px);
}

.scroll-indicator span {
    margin-bottom: 5px;
    font-weight: 500;
    text-transform: uppercase;
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 0;
        padding: 15px 0 5px;
    }

    .hero-content {
        padding-bottom: 40px; /* Spazio per l'indicatore di scorrimento */
    }
}

/* Mobile CTA */
.mobile-cta {
    display: none;
    margin: 25px 0;
    text-align: center;
    padding: 10px;
}

.mobile-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 25px;
    border-radius: 30px;
    background-color: var(--blue);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    text-decoration: none;
}

.mobile-cta a:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
}

.mobile-cta a i {
    margin-left: 8px;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }
    
    /* Animazione progressiva per ogni link quando il menu è attivo */
    .main-nav.active ul li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Animazione per la chiusura */
    .main-nav:not(.active) {
        animation: slideUp 0.6s ease forwards;
    }
    
    @keyframes slideUp {
        0% {
            opacity: 1;
            max-height: 400px;
            transform: translateY(0);
            visibility: visible;
        }
        80% {
            opacity: 0.2;
            transform: translateY(-5px);
        }
        100% {
            opacity: 0;
            max-height: 0;
            transform: translateY(-10px);
            visibility: hidden;
        }
    }
}

/* Versione mobile del footer */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        margin-bottom: 20px;
    }
    
    .footer-logo-img {
        height: 60px;
        margin: 0 auto 10px;
        display: block;
        background-color: white;
        padding: 8px;
        border-radius: 8px;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 20px 0;
        text-align: center;
    }
    
    .footer-links a {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .footer-links a::after {
        display: none;
    }
    
    .copyright {
        padding-top: 15px;
        font-size: 0.8rem;
    }
}

/* Stili migliorati per gli effetti hover attivati durante lo scrolling */
@media (max-width: 768px) {
    /* Remove unused animations */
    @keyframes highlight-pulse {
        /* Empty keyframes to remove the animation */
    }
    
    /* Disable feature animations only */
    .feature.hover-activated {
        animation: none;
    }
    
    .feature.hover-activated i {
        background-color: var(--green);
        color: white;
        transform: none;
        box-shadow: none;
    }
    
    /* Feature sizes for mobile */
    .feature i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feature span {
        font-size: 0.9rem;
    }
    
    /* Menu item con effetto più pronunciato */
    .menu-item.hover-activated {
        transform: translateY(-12px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        animation: none;
        z-index: 2;
    }
    
    .menu-item.hover-activated .menu-img,
    .menu-item.hover-activated .menu-video {
        transform: scale(1.08);
        transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    /* Review card con effetto più evidente */
    .review-card.hover-activated {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        animation: none;
        z-index: 2;
    }
    
    /* Social icons large con effetto più visibile */
    .social-icon-large.hover-activated {
        transform: translateY(-12px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        animation: none;
    }
    
    .social-icon-large.hover-activated i {
        transform: scale(1.3) rotate(5deg);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    /* Social icons in footer con effetto più pronunciato */
    .social-icons a.hover-activated {
        background-color: var(--blue);
        transform: translateY(-8px) scale(1.15);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
    }
    
    /* Footer logo con effetto più marcato */
    .footer-logo-img.hover-activated {
        transform: scale(1.1) rotate(2deg);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        animation: none;
        box-shadow: none;
    }
    
    /* Link nel footer con effetto più evidente */
    .footer-links a.hover-activated {
        background-color: rgba(255, 255, 255, 0.15);
        transform: translateY(-3px);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: none;
    }
} 