        /* STILI CSS */
        :root {
            --color-primary: #fcd34d; /* Giallo/Oro per risaltare sul nero */
            --color-secondary: #fcd34d; 
            --color-background: #000000; /* Sfondo principale nero */
            --color-text: #e2e8f0; /* Testo molto chiaro per il nero */
            --color-cave-dark: #1a202c; /* Colore scuro per sezioni secondarie */
            --color-cave-deep: #0d1217; /* Sfondo scuro per elementi importanti */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif; 
            line-height: 1.6;
            color: var(--color-text); 
            background-color: var(--color-background); 
        }

        /* HEADER & HERO SECTION */
        .hero {
            background-image: url('images/foto2.jpg'); /* BANNER: foto2.jpg */
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white; 
            position: relative;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5); /* Overlay scuro per leggibilità */
        }

        .hero-content {
            z-index: 1;
            padding: 20px;
            text-align: center; 
        }

        .hero h1 {
            font-family: 'Oswald', sans-serif; 
            font-size: 5rem; 
            margin-bottom: 0.5rem; 
            text-shadow: 
                -3px -3px 0px rgba(0,0,0,0.7), 
                3px 3px 0px rgba(252, 211, 77, 0.5), 
                0 0 15px rgba(252, 211, 77, 0.7); 
            color: red; 
            letter-spacing: 3px; 
            border: 2px solid rgba(252, 211, 77, 0.8); 
            padding: 10px 20px;
            border-radius: 10px;
            display: inline-block; 
            line-height: 1; 
        }

        .hero h2 {
            font-size: 1.5rem;
            font-weight: 400;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); 
            margin-top: 25px; 
        }

        /* Pulsante Facebook in evidenza sull'Hero (in cima) */
        .facebook-hero-button {
            display: inline-block;
            background-color: #3b5998; /* Colore iconico di Facebook */
            color: white; 
            font-weight: 700;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1rem;
            margin-top: 0; 
            margin-bottom: 25px; 
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }
        
        .facebook-hero-button:hover {
            background-color: #4c69b0; 
            transform: scale(1.05);
        }
        /* FINE Facebook Hero Button */

        /* Stile per il logo GSSG */
        .logo-container {
            position: absolute;
            top: 20px; 
            left: 20px; 
            z-index: 100; 
        }

        .gssg-logo {
            height: 80px; 
            width: auto;
            background-color: rgba(0, 0, 0, 0.6); 
            padding: 5px 10px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7); 
            transition: transform 0.3s ease;
        }

        .gssg-logo:hover {
            transform: scale(1.05); 
        }


/* Contenitore che definisce il percorso di volo */
.bat-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Non disturba i clic sul sito */
  z-index: 9999;
}

/* Il Pipistrello */
.bat {
  font-size: 30px;
  position: absolute;
  animation: flyAround 12s linear infinite;
  display: inline-block;
}

/* L'animazione del volo */
@keyframes flyAround {
  0%   { transform: translate(-10vw, 20vh) rotate(10deg); }
  25%  { transform: translate(30vw, 50vh) rotate(-15deg) scaleX(-1); }
  50%  { transform: translate(70vw, 10vh) rotate(20deg); }
  75%  { transform: translate(110vw, 40vh) rotate(-10deg) scaleX(1); }
  100% { transform: translate(-10vw, 20vh) rotate(10deg); }
}




        /* SECTIONS GENERAL */
        section {
            padding: 60px 20px;
            max-width: 1000px;
            margin: 0 auto;
            background-color: transparent; 
        }

        h3 {
            font-size: 2rem;
            color: var(--color-primary); 
            margin-bottom: 25px;
            text-align: center;
            font-family: 'Oswald', sans-serif; 
        }

        /* --- FEATURE SECTION E IMMAGINI --- */
        .feature-card {
            background: var(--color-cave-dark); 
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); 
            margin-bottom: 20px;
            text-align: center;
            color: var(--color-text); 
            height: 100%; 
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .feature-card img {
            width: 100%;
            height: 250px; /* MODIFICATO: Aumentato a 250px */
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 15px;
            filter: brightness(0.9) contrast(1.1); 
        }

        .feature-card h4 {
            color: var(--color-secondary); 
            font-family: 'Oswald', sans-serif;
            font-size: 1.25rem;
            margin-bottom: 10px;
        }

        /* --- IMMAGINE DI INGRESSO (CTA TOP) --- */
        .image-full-width {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto 30px auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(252, 211, 77, 0.3); 
            filter: brightness(0.95);
        }
        
        /* --- CALL TO ACTION (CTA) --- */
        .cta-box {
            background-color: var(--color-cave-dark); 
            color: white;
            padding: 40px;
            border-radius: 8px;
            text-align: center;
            margin-top: 40px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--color-secondary); 
            color: var(--color-cave-deep); 
            font-weight: 700;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.1rem;
            margin-top: 20px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: 2px solid var(--color-secondary);
        }

        .cta-button:hover {
            background-color: #e6b800; 
            transform: translateY(-2px);
        }

        /* --- INFO TABLE --- */
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); 
        }

        .info-table th, .info-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #444; 
        }

        .info-table th {
            background-color: var(--color-cave-deep); 
            color: var(--color-secondary); 
            font-weight: 700;
            width: 35%;
        }

        .info-table td {
            background-color: var(--color-cave-dark); 
            color: var(--color-text); 
        }

        .secondary-cta {
            background-color: var(--color-cave-deep); 
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        /* Stile per il pulsante WhatsApp */
        .whatsapp-button {
            display: inline-block;
            background-color: #25D366; /* Verde WhatsApp */
            color: white; 
            font-weight: 700;
            padding: 15px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.1rem;
            margin-top: 20px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }

        .whatsapp-button:hover {
            background-color: #128C7E; 
            transform: translateY(-2px);
        }

        
        /* MAPPA */
        .map-container {
            width: 100%;
            height: 400px; 
            margin: 40px auto 0 auto;
            border: 4px solid var(--color-primary); 
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0 10px rgba(252, 211, 77, 0.5);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* --- CONTACTS (Centrati) --- */
        .contacts-grid {
            display: flex;
            justify-content: center; 
            flex-wrap: wrap;
            margin-top: 30px;
            gap: 20px; 
        }
        
        .contact-item {
            margin: 15px 0; 
            text-align: center; 
        }

        .contact-item strong {
                display: block;
            color: var(--color-primary); 
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .contact-item a {
            color: var(--color-text); 
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--color-secondary); 
        }

        /* FOOTER */
        footer {
            background-color: var(--color-cave-deep); 
            color: #ccc;
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
        }

        footer a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--color-secondary); 
        }
        
        /* MOBILE ADJUSTMENTS */
        @media (max-width: 768px) {
            .hero {
                height: 60vh;
            }
            /* CORREZIONE PER SOVRAPPOSIZIONE LOGO/TITOLO: Aumenta il padding superiore del contenuto Hero */
            .hero-content {
                padding: 120px 20px 20px 20px;
            }
            .hero h1 {
                font-size: 3.5rem; 
                padding: 8px 15px;
                letter-spacing: 2px;
                margin-bottom: 10px; 
            }
            .hero h2 {
                font-size: 1.2rem;
                margin-top: 15px; 
            }
            .facebook-hero-button {
                margin-bottom: 15px; 
                margin-top: 10px; 
            }
            section {
                padding: 40px 15px;
            }
            .feature-card img {
                height: 150px; /* MODIFICATO: Aumentato a 150px */
            }
            .map-container {
                height: 300px; 
            }
            .info-table th, .info-table td {
                display: block;
                width: 100%;
                text-align: center;
            }
            .info-table th {
                background-color: var(--color-cave-deep); 
                color: var(--color-secondary); 
                border-bottom: none;
            }
            .info-table tr {
                margin-bottom: 20px;
                display: block;
                border: 1px solid #444; 
                border-radius: 8px;
                overflow: hidden;
            }
            .info-table td:last-child {
                border-bottom: none;
            }
        }
