/**
 * CORRECTION COULEURS NEXSAFAR
 * Remplace toutes les couleurs teal par gold
 * À ajouter APRÈS header-nexsafar-2025.css
 */

:root {
    /* Remplacer le teal par le gold */
    --nexsafar-primary: #C9A962 !important;
    --nexsafar-primary-hover: #A68B4B !important;
}

/* Corrections supplémentaires pour s'assurer que tout est gold */

/* Boutons principaux */
.btn-primary,
.mobile-btn-primary,
.header-action-btn {
    background: linear-gradient(135deg, #C9A962 0%, #A68B4B 100%) !important;
    color: #2C3E50 !important;
}

.btn-primary:hover,
.mobile-btn-primary:hover,
.header-action-btn:hover {
    background: linear-gradient(135deg, #A68B4B 0%, #C9A962 100%) !important;
}

/* Liens actifs */
.nav-link:hover,
.nav-link.active,
.dropdown-link:hover {
    color: #C9A962 !important;
}

/* Icônes */
.nav-link i,
.dropdown-link i {
    color: #C9A962 !important;
}

/* Badges */
.badge-primary {
    background: rgba(201, 169, 98, 0.2) !important;
    color: #A68B4B !important;
    border: 1px solid rgba(201, 169, 98, 0.3) !important;
}

/* Bordures actives */
.action-item.active::after,
.nav-item:hover::after {
    background: #C9A962 !important;
}

/* Dropdown items au hover */
.mega-menu-link:hover {
    color: #C9A962 !important;
}

.mega-menu-link i {
    color: #C9A962 !important;
}

/* Titres avec bordure */
.mega-column-title {
    border-bottom-color: #C9A962 !important;
}

/* Focus states */
input:focus,
textarea:focus,
select:focus {
    border-color: #C9A962 !important;
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15) !important;
}

/* Boutons secondaires avec bordure gold */
.btn-outline {
    border-color: #C9A962 !important;
    color: #C9A962 !important;
}

.btn-outline:hover {
    background: #C9A962 !important;
    color: white !important;
}
