/* bouctech.css - Feuille de style globale centralisée */
body { font-family: 'Inter', sans-serif; }

/* --- CORRECTIF CLS (Cumulative Layout Shift) --- */
/* Réserve l'espace de la navigation avant son chargement asynchrone */
#nav-container { min-height: 105px; }

/* --- EFFETS LUMINEUX --- */
.neon-blue { text-shadow: 0 0 15px rgba(59, 130, 246, 0.5); }
.neon-emerald { text-shadow: 0 0 15px rgba(16, 185, 129, 0.5); }

.glow-text {
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.8));
    -webkit-text-stroke: 0.2px rgba(255,255,255,0.1);
}

/* --- BOUTONS D'ACTION (Standardisés) --- */
.action-btn {
    color: #ffffff; 
    padding: 15px 30px; 
    border-radius: 12px; /* Standardisé à 12px pour un design moderne sur tout le site */
    font-weight: bold; 
    cursor: pointer; 
    transition: all 0.3s ease; 
    display: inline-block;
    width: 100%; 
    text-align: center; 
    margin-top: 20px;
}

/* Variantes de couleurs */
.btn-blue { background-color: #2563eb; }
.btn-blue:hover {
    background-color: #3b82f6; 
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.btn-emerald { background-color: #10b981; }
.btn-emerald:hover {
    background-color: #059669; 
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}