/*
 * FontAwesome Free 5 — auto-hébergé (RGPD — remplace use.fontawesome.com)
 *
 * Fichiers à déposer dans : wp-content/themes/oncd/dist/fonts/
 * Téléchargement : https://fontawesome.com/download  →  "Free For Web"
 * Extraire le ZIP et copier depuis webfonts/ :
 *
 *   fa-solid-900.woff2
 *   fa-regular-400.woff2
 *   fa-brands-400.woff2
 *
 * Note : seul le woff2 est nécessaire pour les navigateurs modernes.
 * Le thème utilise uniquement les classes fas (solid) — regular et brands
 * sont inclus par précaution.
 */

/* ---- Solid (fas) — utilisé dans le thème ---- */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('../fonts/fa-solid-900.woff2') format('woff2');
}
.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}

/* ---- Regular (far) ---- */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/fa-regular-400.woff2') format('woff2');
}
.far {
  font-family: 'Font Awesome 5 Free';
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}

/* ---- Brands (fab) ---- */
@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
}
.fab {
  font-family: 'Font Awesome 5 Brands';
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}

/* ---- Icônes utilisées dans le thème (contenu Unicode) ---- */
.fa-map-marker-alt::before  { content: "\f3c5"; }
.fa-envelope::before        { content: "\f0e0"; }
.fa-phone::before           { content: "\f095"; }
.fa-user::before            { content: "\f007"; }
.fa-exclamation-triangle::before { content: "\f071"; }
