    .features {
            position: relative;
            overflow: hidden;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            text-align: center;
            color: white;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        .tour-description {
            max-width: 800px;
            margin: 0 auto 4rem;
            text-align: center;
        }

        .tour-intro {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        .tour-mission {
             font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out calc(0.6s + var(--delay)) both;
        }

        .feature-card:nth-child(1) { --delay: 0s; }
        .feature-card:nth-child(2) { --delay: 0.1s; }
        .feature-card:nth-child(3) { --delay: 0.2s; }
        .feature-card:nth-child(4) { --delay: 0.3s; }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            background: rgba(255, 255, 255, 1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            color: #2d3748;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.6;
        }

       .video-section {
            background: #000000;
            padding: 0;
             position: relative;
            overflow: hidden;
        }

        .video-container {
            position: relative;
            width: 100%;
            height: 95vh;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .background-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            z-index: 1;
            object-fit: cover;
            /* Ottimizzazioni performance */
            will-change: transform;
            backface-visibility: hidden;
            perspective: 1000px;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(358deg, rgb(0 0 0), rgb(4 4 4 / 0%));
            z-index: 2;
        }

        .video-content {
            position: relative;
            z-index: 3;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 2rem;
        }

        .video-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out 1.5s both;
        }

        .video-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            line-height: 1.6;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 1.7s both;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #b9b274, #696434);
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out 1.9s both;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            background: linear-gradient(183deg, #b9b27463, #696434);
        }

        /* Video Controls (nascosti ma accessibili) */
        .video-controls {
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 4;
            display: flex;
            gap: 10px;
			display:none;
        }

        .video-control-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .video-control-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .video-control-btn.hidden {
            opacity: 0;
            pointer-events: none;
        }

        /* Loading spinner */
        .video-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            color: white;
            font-size: 1.2rem;
        }

        .spinner {
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid #667eea;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .video-container {
                height: 70vh;
                min-height: 300px;
            }

            .video-title {
                font-size: 2.2rem;
            }

            .video-subtitle {
                font-size: 1.1rem;
            }

            .cta-button {
                padding: 15px 35px;
                font-size: 1rem;
            }

            .video-controls {
                bottom: 10px;
                right: 10px;
            }

            .video-control-btn {
                width: 40px;
                height: 40px;
            }
        }

        /* Preload placeholder */
        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: black;
            z-index: 0;
            transition: opacity 0.5s ease;
        }

        .video-placeholder.hidden {
            opacity: 0;
        }

/* HERO SECTION CON CAROUSEL */
.hero {
     position: relative;
    height: 25vh;
    max-height: 233px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Carousel Container */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	max-width: 470px;
    height: 100%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Singolo Slide */
.hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Divisori obliqui tra slides */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100%;
    transform: skewX(350deg);
    z-index: 2;
    background: #9b9a5b;
	backdrop-filter:blur(10px);
	box-shadow: 1px 3px 20px 7px rgb(0 0 0 / 90%)
}

/* Overlay fumé per ogni slide */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(179deg, rgb(0 0 0) 0%, rgb(25 24 15 / 12%) 50%, rgb(0 0 0) 100%);
    z-index: 1;
}

/* Info evento su ogni slide */
.hero-slide-info {
    position: absolute;
    bottom: 40px;
    left: 34%;
    color: white;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.hero-slide-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-slide-date {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.hero-slide-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: rgba(46, 204, 113, 0.8);
    color: white;
}

.status-ended {
    background: rgba(231, 76, 60, 0.8);
    color: white;
}

.status-upcoming {
    background: rgb(153 157 97);
    color: white;
}

/* Contenuto principale hero */
.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
    max-width: 100%;
    padding: 0 20px;
	top: -30px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
	padding-top: 7%;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* .hero-buttons {
	
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
} */
.hero-buttons {
	
    display: none;

}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 4px 15px rgba(185, 178, 116, 0.4);
}

.btn-primary:hover {
    background: #8b8751;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(185,178,116,0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.4);
}

/* Controlli navigazione */
.hero-nav {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 5;
    display: flex;
    gap: 15px;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(185,178,116,0.8);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: #b9b274;
    transform: scale(1.1);
}

.hero-nav-btn:active {
    transform: scale(0.95);
}

/* Indicatori dots */
/* .hero-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
} */

.hero-dots{display:none}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #b9b274;
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 768px) {
	.hero{display:none !important;}
	.hero-dots {
		display:none;
	}
	.hero-carousel {
display:none;
}
.hero-slide::after {
   display:none;
}

    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-slide-info {
        bottom: 15px;
        left: 15px;
    }

    .hero-slide-title {
        font-size: 1.2rem;
    }

    .hero-nav {
        bottom: 15px;
        right: 15px;
    }

    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Animazioni */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-slide-info {
    animation: slideIn 1s ease-out 0.5s both;
}

.hero-content {
    animation: slideIn 1s ease-out 0.8s both;
}

/* Effetto drag */
.hero-carousel.dragging {
    transition: none;
}

.hero {
    cursor: grab;
}

.hero:active {
    cursor: grabbing;
}

		