/* ============================================
   TEXTE DE COPYRIGHT EN BLANC - TOUTES LES PAGES
   ============================================ */

/* Règle principale pour le texte de copyright */
.footer .container > div[style*="text-align: center"] p,
.footer .container > div[style*="margin-top: 2rem"] p,
.footer .container > div[style*="padding-top: 2rem"] p,
.footer .container > div:last-child p,
.footer .container > div[style*="border-top"] p {
    color: var(--white) !important; /* Texte blanc pour le copyright */
}

/* Media queries pour garantir le blanc sur tous les écrans */
@media (max-width: 768px) {
    .footer .container > div[style*="text-align: center"] p,
    .footer .container > div[style*="margin-top: 2rem"] p,
    .footer .container > div[style*="padding-top: 2rem"] p,
    .footer .container > div:last-child p,
    .footer .container > div[style*="border-top"] p {
        color: var(--white) !important; /* Texte blanc pour le copyright sur mobile */
    }
}

@media (max-width: 480px) {
    .footer .container > div[style*="text-align: center"] p,
    .footer .container > div[style*="margin-top: 2rem"] p,
    .footer .container > div[style*="padding-top: 2rem"] p,
    .footer .container > div:last-child p,
    .footer .container > div[style*="border-top"] p {
        color: var(--white) !important; /* Texte blanc pour le copyright sur très petits écrans */
    }
}
