 /* --- VARIABILI COLORI E FONT --- */
        :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;
        }

        /* --- 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;
        }
        
        .text-orange { color: var(--fioi-orange) !important; }
        .bg-black { background-color: var(--fioi-black) !important; color: var(--fioi-white); }

        /* --- HERO RACCOLTA FONDI --- */
        .event-hero {
            
            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;
        }
        .parallax-overlay {
            background-color: rgba(0, 0, 0, 0.75);
            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;
        }

        /* --- ELEMENTI PAGINA --- */
        .poster-img {
            border: 5px solid var(--fioi-black);
            border-bottom: 15px 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: 25px;
            border-radius: 0 10px 10px 0;
            margin-bottom: 30px;
        }
        
        .obiettivo-icon {
            font-size: 2rem;
            color: var(--fioi-orange);
            margin-bottom: 15px;
        }

        /* Bottoni Donazione */
        .btn-donate {
            background-color: var(--fioi-orange);
            color: var(--fioi-white);
            font-weight: bold;
            padding: 15px 25px;
            border-radius: 10px;
            text-transform: uppercase;
            border: none;
            transition: 0.3s;
            display: inline-block;
            text-decoration: none;
            width: 100%;
            margin-bottom: 10px;
        }
        .btn-donate:hover {
            background-color: var(--fioi-black);
            color: var(--fioi-orange);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .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;
        }

        footer {
            background-color: var(--fioi-black);
            color: #aaa;
            padding: 50px 0 20px;
            border-top: 3px solid var(--fioi-orange);
            margin-top: 50px;
        }

                /* --- 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 */
        }

        /* Effetto opzionale: il logo si ingrandisce leggermente se ci passi sopra col mouse */
        .footer-logo:hover {
            transform: scale(1.05);
        }
        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); }