   /* --- VARIABILI COLORI E FONT (Stesse della Home) --- */
        :root {
            --fioi-orange: #FF6600;
            --fioi-black: #0d0d0d;
            --fioi-white: #ffffff;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--fioi-white);
            color: var(--fioi-black);
            padding-top: 76px; /* Spazio per la navbar fissa */
        }

        /* --- NAVBAR --- */
        .navbar {
            background-color: rgba(0, 0, 0, 0.95) !important;
            padding: 15px 0;
        }
        .navbar-brand {
            color: var(--fioi-orange) !important;
            font-weight: 900;
            font-size: 1.8rem;
            letter-spacing: 2px;
        }
        .nav-link {
            color: var(--fioi-white) !important;
            text-transform: uppercase;
            font-weight: 700;
            margin-left: 15px;
            transition: 0.3s;
        }
        .nav-link:hover { color: var(--fioi-orange) !important; }
        
        /* Utility Colors */
        .text-orange { color: var(--fioi-orange) !important; }
        .bg-black { background-color: var(--fioi-black) !important; color: var(--fioi-white); }

        /* --- EVENTO (Parallax) --- */
        .event-hero {
            background-image: url("https://fioiaps.it/img/villa-parallax.jpg"); 
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
            height: 350px; 
            display: flex;
            align-items: center;
            justify-content: center;
            
        }
        @media (max-width: 768px) {
            .event-hero {
            background-image: url("https://fioiaps.it/img/villa-parallax-mobile.jpg"); 
            background-attachment: scroll; 
            height: 400px; 
            }
        }
        .parallax-overlay {
            background-color: rgba(0, 0, 0, 0.7);
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
        }
        .event-hero-title {
            position: relative;
            z-index: 2;
            color: var(--fioi-white);
            font-weight: 900;
            text-transform: uppercase;
            font-size: 3rem;
            text-align: center;
            border-bottom: 5px solid var(--fioi-orange);
            padding-bottom: 10px;
        }

        /* --- DETTAGLI EVENTO E POSTER --- */
        .bg-light {
        background-color: #f8f9fa !important;
        }

        h5 {
        color: #222;
        }

        .text-muted {
        font-size: 0.9rem;
        line-height: 1.5;
        }

        .poster-img {
            border: 5px solid var(--fioi-black);
            border-bottom: 7px solid var(--fioi-orange);
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .info-box {
            background-color: #f8f9fa;
            border-left: 5px solid var(--fioi-orange);
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin-bottom: 30px;
        }
        .info-item {
            display: flex;
            align-items: center;
            justify-content: left;
            font-size: 1.2rem;
        }
        .info-item i {
            color: var(--fioi-orange);
            width: 60px;
            height: 60px;
            text-align: center;
            margin-right: 15px;
            margin-top: 15px;
        }

        /* Bottone */
        .btn-custom {
            background-color: var(--fioi-orange);
            color: var(--fioi-white);
            font-weight: bold;
            padding: 15px 30px;
            border-radius: 50px;
            text-transform: uppercase;
            border: none;
            transition: 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        .btn-cookies {
            background-color: var(--fioi-orange);
            color: var(--fioi-white);
            font-weight: bold;
            padding: 15px 30px;
            border-radius: 50px;
            text-transform: uppercase;
            border: none;
            transition: 0.3s;
        }
        .btn-custom:hover {
            background-color: var(--fioi-black);
            color: var(--fioi-orange);
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--fioi-black);
            color: #aaa;
            padding: 50px 0 20px;
            border-top: 3px solid var(--fioi-orange);
        }
        footer h5 { color: var(--fioi-white); font-weight: 700; }
        footer a { color: #aaa; text-decoration: none; transition: 0.3s; }
        footer a:hover { color: var(--fioi-orange); }

                /* --- LOGO FOOTER --- */
        .footer-logo {
            max-width: 180px; /* Puoi aumentare o diminuire questo valore per ingrandire/rimpicciolire il logo */
            height: auto;
            display: block;
            transition: transform 0.3s ease; /* Prepara l'animazione per l'hover */
        }

        .footer-logo:hover {
            transform: scale(1.05);
        }

        /* --- CAROSELLO FOTO --- */
.carousel-item img {
    height: 500px;
    object-fit: cover; 
    border-radius: 10px;
}
.carousel-indicators [data-bs-target] {
    background-color: var(--fioi-orange);
}