/* ===================================================================
   🎨 CONTACT PAGE - COULEURS DORÉES FINALES
   ================================================================
   Version : 12.7
   Date : 17 Avril 2026
   
   BUT : Remplacer TOUTES les couleurs vertes (#00C9A7, #00A389) 
         par du doré caramel (#C9A961) sur la page contact
=================================================================== */

/* ===================================================================
   📧 EMAIL - RÉDUIRE LA TAILLE POUR QU'IL RENTRE
=================================================================== */

.contact-info-card a[href*="mailto"] {
    font-size: 15px !important; /* Réduit de 18px à 15px */
    color: #C9A961 !important; /* Doré caramel */
    word-break: break-word !important;
    line-height: 1.4 !important;
}

.contact-info-card a[href*="mailto"]:hover {
    color: #5D4E37 !important; /* Marron chocolat au survol */
}

/* ===================================================================
   📞 TÉLÉPHONE - COULEUR DORÉE
=================================================================== */

.contact-info-card a[href*="tel"] {
    font-size: 18px !important;
    color: #C9A961 !important; /* Doré caramel */
    font-weight: 600 !important;
}

.contact-info-card a[href*="tel"]:hover {
    color: #5D4E37 !important; /* Marron chocolat au survol */
}

/* ===================================================================
   📍 ADRESSE POSTALE - COULEUR DORÉE
=================================================================== */

.contact-info-card p {
    color: #C9A961 !important; /* Doré caramel pour l'adresse */
    font-size: 16px !important;
    line-height: 1.6 !important;
}

/* Exception pour les notes (Réponse sous 24h, etc.) */
.contact-info-card .contact-info-note,
.contact-info-card span.contact-info-note {
    color: #8B7D6B !important; /* Taupe pour les notes */
    font-size: 14px !important;
}

/* ===================================================================
   🌐 RÉSEAUX SOCIAUX - INSTAGRAM & TIKTOK - COULEUR DORÉE
=================================================================== */

.social-links-contact a {
    color: #C9A961 !important; /* Doré caramel */
    font-size: 16px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 20px !important;
    border-radius: 8px !important;
    background: #F5F0E8 !important; /* Fond beige */
    transition: all 0.3s ease !important;
    margin: 5px !important;
}

.social-links-contact a:hover {
    background: #C9A961 !important; /* Fond doré au survol */
    color: #FFFEF9 !important; /* Texte blanc crème au survol */
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3) !important;
}

.social-links-contact a svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor !important;
}

/* FORÇAGE ULTRA-SPÉCIFIQUE : INSTAGRAM */
.social-links-contact a[href*="instagram"],
.social-links-contact a[href*="Instagram"],
.social-links-contact a[href*="INSTAGRAM"] {
    color: #C9A961 !important; /* Doré caramel FORCÉ */
}

.social-links-contact a[href*="instagram"] svg,
.social-links-contact a[href*="Instagram"] svg {
    fill: #C9A961 !important; /* Logo Instagram doré */
}

/* FORÇAGE ULTRA-SPÉCIFIQUE : TIKTOK */
.social-links-contact a[href*="tiktok"],
.social-links-contact a[href*="TikTok"],
.social-links-contact a[href*="TIKTOK"] {
    color: #C9A961 !important; /* Doré caramel FORCÉ */
}

.social-links-contact a[href*="tiktok"] svg,
.social-links-contact a[href*="TikTok"] svg {
    fill: #C9A961 !important; /* Logo TikTok doré */
}

/* ===================================================================
   📘 FACEBOOK - NOUVEAU BOUTON
=================================================================== */

/* Bouton Facebook spécifique */
.social-links-contact a[href*="facebook"] {
    color: #C9A961 !important; /* Doré caramel */
    background: #F5F0E8 !important; /* Fond beige */
}

.social-links-contact a[href*="facebook"]:hover {
    background: #C9A961 !important; /* Fond doré au survol */
    color: #FFFEF9 !important; /* Texte blanc crème */
}

/* Logo Facebook SVG */
.social-links-contact a[href*="facebook"] svg {
    fill: currentColor !important;
}

/* ===================================================================
   🚫 FORCER LA SUPPRESSION DES COULEURS VERTES
=================================================================== */

/* Supprimer TOUTES les couleurs vertes turquoise */
.contact-info-card *[style*="#00C9A7"],
.contact-info-card *[style*="#00A389"],
.contact-info-card *[style*="rgb(0,201,167)"],
.contact-info-card *[style*="rgba(0,201,167"],
.social-links-contact *[style*="#00C9A7"],
.social-links-contact *[style*="#00A389"] {
    color: #C9A961 !important; /* Remplacer par doré */
}

/* Supprimer les backgrounds verts */
.contact-info-card *[style*="background"][style*="#00C9A7"],
.contact-info-card *[style*="background"][style*="#00A389"],
.social-links-contact *[style*="background"][style*="#00C9A7"] {
    background: #C9A961 !important; /* Remplacer par doré */
}

/* Supprimer les bordures vertes */
.contact-info-card *[style*="border"][style*="#00C9A7"],
.contact-info-card *[style*="border"][style*="#00A389"] {
    border-color: #C9A961 !important; /* Remplacer par doré */
}

/* FORÇAGE GLOBAL : Tout lien vers Instagram/TikTok DOIT être doré */
a[href*="instagram"],
a[href*="tiktok"],
a[href*="Instagram"],
a[href*="TikTok"] {
    color: #C9A961 !important; /* Doré caramel PARTOUT */
}

/* FORÇAGE : Tous les SVG dans les liens sociaux doivent être dorés */
.social-links-contact svg,
.social-links-contact a svg,
.social-links-contact svg path,
.social-links-contact a svg path {
    fill: #C9A961 !important; /* Doré pour tous les logos SVG */
    color: #C9A961 !important;
}

/* HOVER : SVG doivent devenir blancs au survol */
.social-links-contact a:hover svg,
.social-links-contact a:hover svg path {
    fill: #FFFEF9 !important; /* Blanc crème au survol */
    color: #FFFEF9 !important;
}

/* ===================================================================
   📱 RESPONSIVE - MOBILE
=================================================================== */

@media (max-width: 768px) {
    .contact-info-card a[href*="mailto"] {
        font-size: 14px !important; /* Encore plus petit sur mobile */
    }
    
    .contact-info-card a[href*="tel"] {
        font-size: 16px !important;
    }
    
    .contact-info-card p {
        font-size: 15px !important;
    }
    
    .social-links-contact {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .social-links-contact a {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* ===================================================================
   ✅ MENTION LÉGALE FACEBOOK (RGPD)
=================================================================== */

/* Style pour la mention légale Facebook */
.facebook-legal-notice {
    background: #F5F0E8 !important;
    border-left: 4px solid #C9A961 !important;
    padding: 20px 24px !important;
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #5D4E37 !important;
}

.facebook-legal-notice p {
    margin: 0 0 10px 0 !important;
    color: #5D4E37 !important;
}

.facebook-legal-notice p:last-child {
    margin-bottom: 0 !important;
}

.facebook-legal-notice strong {
    color: #5D4E37 !important;
    font-weight: 600 !important;
}

.facebook-legal-notice a {
    color: #C9A961 !important;
    text-decoration: underline !important;
}

.facebook-legal-notice a:hover {
    color: #5D4E37 !important;
}
