/* Minimal Font Awesome - Only icons used on ABEC site */
/* Reduces CSS from 18KB to ~2KB */

/* Font Awesome Free Solid - font-display: swap */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2") format("woff2");
}

/* Font Awesome Free Regular - font-display: swap */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2") format("woff2");
}

/* Font Awesome Brands - font-display: swap */
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2") format("woff2");
}

/* Base Icon Styling */
.fa, .fas, .far, .fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fas, .fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.far, .fa-regular {
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
}

.fab, .fa-brands {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

/* Icon Unicode Mappings - Only icons used on site */
.fa-calendar-check::before { content: "\f274"; }
.fa-phone-alt::before { content: "\f879"; }
.fa-chevron-down::before { content: "\f078"; }
.fa-user::before { content: "\f007"; }
.fa-calendar::before { content: "\f133"; }
.fa-clock::before { content: "\f017"; }
.fa-user-circle::before { content: "\f2bd"; }
.fa-star::before { content: "\f005"; }
.fa-map-marker-alt::before { content: "\f3c5"; }
.fa-certificate::before { content: "\f0a3"; }
.fa-award::before { content: "\f559"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-medal::before { content: "\f5a2"; }
.fa-heart::before { content: "\f004"; }
.fa-comment-dots::before { content: "\f4ad"; }
.fa-bolt::before { content: "\f0e7"; }
.fa-zap::before { content: "\26a1"; }
.fa-bolt-lightning::before { content: "\e0b7"; }
.fa-clipboard-check::before { content: "\f46c"; }
.fa-tools::before { content: "\f7d9"; }
.fa-search::before { content: "\f002"; }

/* Brand Icons */
.fa-facebook-f::before { content: "\f39e"; }
.fa-instagram::before { content: "\f16d"; }
.fa-twitter::before { content: "\f099"; }
.fa-linkedin-in::before { content: "\f0e1"; }
