/**
 * CORRECTION MODE SOMBRE MINIMAL - OMNICOM
 * Fichier essentiel pour corriger la visibilité des textes
 */

/* ===== CORRECTION MODE SOMBRE ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #121212;
        --light-gray: #1e1e1e;
        --gray: #e0e0e0;
        --dark-gray: #ffffff;
        --primary-color: #4f8ff7;
        --accent-color: #5a9cfc;
    }
    
    /* FORCE LA VISIBILITÉ DES TEXTES CRITIQUES */
    body {
        background-color: #121212 !important;
        color: #ffffff !important;
    }
    
    h1, h2, h3, h4, h5, h6,
    .hero-title,
    .section-title,
    .service-title-modern,
    .service-detail-header .section-title {
        color: #ffffff !important;
        visibility: visible !important;
        display: block !important;
        opacity: 1 !important;
        text-shadow: none !important;
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: normal !important;
    }
    
    p, span,
    .hero-subtitle,
    .section-subtitle,
    .service-description-modern,
    .service-detail-header .section-subtitle {
        color: #e0e0e0 !important;
        visibility: visible !important;
        display: block !important;
        opacity: 1 !important;
    }
    
    .card {
        background: #1e1e1e !important;
        color: #ffffff !important;
        border: 1px solid #333 !important;
    }
    
    a {
        color: #5a9cfc !important;
    }
    
    /* CORRECTION SPÉCIFIQUE POUR LES ICÔNES EN MODE SOMBRE */
    .icon {
        color: #ffffff !important;
        visibility: visible !important;
        display: inline-block !important;
        opacity: 1 !important;
        filter: drop-shadow(0 1px 3px rgba(255,255,255,0.2)) !important;
    }
    
    .icon-check {
        color: #10b981 !important;
    }
    
    .icon-star {
        color: #f59e0b !important;
    }
    
    .icon-phone,
    .icon-envelope,
    .icon-map-marker,
    .icon-clock {
        color: #60a5fa !important;
    }
    
    .icon-paper-plane {
        color: #93c5fd !important;
    }
    
    .icon-facebook {
        color: #1877f2 !important;
    }
    
    .icon-linkedin {
        color: #0077b5 !important;
    }
    
    .icon-twitter {
        color: #1da1f2 !important;
    }
    
    .icon-instagram {
        color: #e4405f !important;
    }
    
    /* MOBILE SPÉCIFIQUE */
    .mobile-menu {
        background: #1e1e1e !important;
        color: #ffffff !important;
    }
    
    .mobile-link {
        color: #ffffff !important;
    }
    
    /* FORMULAIRES */
    .form-group input,
    .form-group select,
    .form-group textarea {
        background: #2a2a2a !important;
        color: #ffffff !important;
        border: 1px solid #444 !important;
    }
    
    .form-group label {
        color: #ffffff !important;
        visibility: visible !important;
        display: block !important;
        opacity: 1 !important;
    }
    
    /* CORRECTION IMAGES SERVICES */
    .service-image-modern {
        visibility: visible !important;
        display: block !important;
        opacity: 1 !important;
        border: 3px solid #4f8ff7 !important;
    }
    
    .service-image-modern img {
        visibility: visible !important;
        display: block !important;
        opacity: 1 !important;
        filter: none !important;
        -webkit-filter: none !important;
    }
    
    .service-card-modern {
        background: #1e1e1e !important;
        border: 1px solid #333 !important;
        color: #ffffff !important;
    }
    
    .service-card-header {
        background: linear-gradient(135deg, #2a2a2a, #1e1e1e) !important;
    }
}