/* assets/css/compliance.css */

/* 1. LAYOUT & SPAZIATURA GENERALE */
footer {
    position: relative;
    z-index: 10;
    margin-top: 8rem; /* Circa 128px per dare aria prima della chiusura */
    background: #09090b; /* Nero profondo per contrasto */
}

/* 2. TIPOGRAFIA TECH & LEGGIBILITÀ */
.font-mono {
    letter-spacing: 0.05em;
    font-size: 0.875rem; /* Base 14px per i font monospaziati */
}

/* Miglioramento contrasto link footer */
footer a {
    text-shadow: 0 0 15px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

/* Dati tecnici a bassa priorità */
.text-zinc-600 {
    color: rgba(161, 161, 170, 0.4) !important;
}

/* 3. MODULI DI CONSENSO (COOKIE BANNER) */
#cookie-protocol {
    z-index: 100;
    bottom: 2rem;
    right: 2rem;
    max-width: 400px; /* Leggermente più largo per evitare testi troppo compressi */
    box-shadow: 0 0 50px rgba(0,0,0,0.9), 0 0 20px rgba(59, 130, 246, 0.1);
}

/* 4. SCROLLBAR PERSONALIZZATA (MODALE PRIVACY) */
.custom-scrollbar::-webkit-scrollbar { 
    width: 6px; /* Aumentata da 4px a 6px per migliore usabilità */
}

.custom-scrollbar::-webkit-scrollbar-track { 
    background: #09090b; 
}

.custom-scrollbar::-webkit-scrollbar-thumb { 
    background: #3f3f46; /* Colore zinco più visibile */
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover { 
    background: #3b82f6; /* Accento blu al passaggio */
}

/* 5. SECURITY & COMPLIANCE (RECAPTCHA) */
/* Nasconde il badge Google ma mantiene la validità legale tramite il footer */
.grecaptcha-badge { 
    visibility: hidden !important; 
    pointer-events: none;
}

/* Utility per evidenziare i percorsi tecnici nel footer */
.footer-path-highlight {
    color: #3b82f6;
    font-weight: 700;
    margin-right: 0.5rem;
}