/*
 * Font Awesome 6.4.0 — SELF-HOSTED SUBSET (perf pass).
 *
 * Replaces the render-blocking full CDN stylesheet
 * (cdnjs .../font-awesome/6.4.0/css/all.min.css, ~102 KB, third-party origin)
 * with a same-origin ~3 KB stylesheet that carries ONLY the ~36 glyph rules this
 * app actually uses (solid + brands). Fonts are self-hosted too (solid + brands
 * WOFF2 only — the regular + v4-compat faces are dropped), so there is no cdnjs
 * origin and no render-blocking 102 KB CSS.
 *
 * To add an icon: add its class + the matching `.fa-<name>::before{content}` code
 * from the Font Awesome 6.4 metadata below. If you ever need the `regular` style,
 * self-host fa-regular-400.woff2 and add its @font-face + `.far` rule.
 */

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/assets/fontawesome/webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/assets/fontawesome/webfonts/fa-brands-400.woff2") format("woff2");
}

.fa,
.fas,
.fa-solid,
.fab,
.fa-brands {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}

.fas,
.fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fab,
.fa-brands {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

/* ── Used solid glyphs ──────────────────────────────────────────────────────── */
.fa-arrow-left::before { content: "\f060"; }
.fa-arrow-right::before { content: "\f061"; }
.fa-award::before { content: "\f559"; }
.fa-bolt::before { content: "\f0e7"; }
.fa-briefcase::before { content: "\f0b1"; }
.fa-building::before { content: "\f1ad"; }
.fa-check::before { content: "\f00c"; }
.fa-check-circle::before,
.fa-circle-check::before { content: "\f058"; }
.fa-clipboard-check::before { content: "\f46c"; }
.fa-clock::before { content: "\f017"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-exclamation-circle::before { content: "\f06a"; }
.fa-folder-open::before { content: "\f07c"; }
.fa-graduation-cap::before { content: "\f19d"; }
.fa-hands-helping::before { content: "\f4c4"; }
.fa-hard-hat::before { content: "\f807"; }
.fa-heart::before { content: "\f004"; }
.fa-leaf::before { content: "\f06c"; }
.fa-lightbulb::before { content: "\f0eb"; }
.fa-lock::before { content: "\f023"; }
.fa-map-marker-alt::before { content: "\f3c5"; }
/* Day/night mode toggle — rendered via DYNAMIC [class.fa-moon]/[class.fa-sun]
   bindings (navbar), which the static used-icon grep that built this subset did
   NOT catch → the toggle icons were tofu ("disappeared"). Keep these two. */
.fa-moon::before { content: "\f186"; }
.fa-sun::before { content: "\f185"; }
.fa-paper-plane::before { content: "\f1d8"; }
.fa-passport::before { content: "\f5ab"; }
.fa-phone-alt::before { content: "\f879"; }
.fa-plane-arrival::before { content: "\f5af"; }
.fa-route::before { content: "\f4d7"; }
.fa-shield-alt::before,
.fa-shield-halved::before { content: "\f3ed"; }
.fa-star::before { content: "\f005"; }
.fa-university::before { content: "\f19c"; }
.fa-user::before { content: "\f007"; }
.fa-users::before { content: "\f0c0"; }
.fa-wand-magic-sparkles::before { content: "\e2ca"; }

/* ── Used brand glyphs ──────────────────────────────────────────────────────── */
.fa-facebook-f::before { content: "\f39e"; }
.fa-instagram::before { content: "\f16d"; }
.fa-linkedin-in::before { content: "\f0e1"; }
.fa-whatsapp::before { content: "\f232"; }
