/* ft-icons.css — overrides ciblés legacy.
 * Le site utilise FontAwesome (fonts2020/fontawesome.min.css) pour toutes ses icônes,
 * comme le legacy ASP depuis 13 ans. Ce fichier contient uniquement les quelques
 * ajustements vraiment spécifiques à notre migration. */

/* Navbar : couleur #021823 au lieu du bleu legacy (demande utilisateur) */
#header {
    background-color: #021823;
}

/* Police Swiss 721 servie en local (le legacy l'appelait depuis www.french-twinks.com absolu,
 * ce qui créerait du CORS inutile post-cutover). */
@font-face {
    font-family: "swiss 721 condensed bt";
    font-style: normal;
    font-weight: 400;
    src: local("Swiss 721 Condensed BT"),
         url("/assets/fonts/Swiss721CondensedBT.woff2") format("woff2");
    font-display: swap;
}

/* Font Awesome : le CSS hérité référence les .woff2 via URLs absolues www.french-twinks.com.
 * On redéclare les @font-face vers nos fichiers locaux /fonts2020/ pour éviter CORS + 404
 * post-cutover DNS. */
@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    font-display: block;
    src: url("/fonts2020/fa-solid-900.woff2") format("woff2"),
         url("/fonts2020/fa-solid-900.woff") format("woff");
}
@font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("/fonts2020/fa-brands-400.woff2") format("woff2"),
         url("/fonts2020/fa-brands-400.woff") format("woff");
}
