/*
 * Font Awesome subset — only the 18 icons used on bright.limited.
 * Replaces the full 75 KB fontawesome.min.css. Pair with the
 * matching subsetted woff2 files under assets/webfonts-subset/.
 *
 * Icons included:
 *   solid:   angle-down, bars, earth-americas, envelope, globe, location-dot,
 *            meteor, moon, phone, play, rocket, satellite, satellite-dish,
 *            star, xmark
 *   regular: star
 *   brands:  linkedin-in, x-twitter
 */

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

@font-face {
    font-family: "Font Awesome 7 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts-subset/fa-regular-400-subset.woff2") format("woff2");
}

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

/* Base icon styling (matches FA 7's defaults). */
.fa,
.fa-solid,
.fa-regular,
.fa-brands,
.fas,
.far,
.fab {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    text-align: center;
    width: 1.25em;
}

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

.fa-regular,
.far {
    font-family: "Font Awesome 7 Free";
    font-weight: 400;
}

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

/* Glyph definitions — :before content for each icon used. */
.fa-star::before          { content: "\f005"; }
.fa-xmark::before         { content: "\f00d"; }
.fa-play::before          { content: "\f04b"; }
.fa-phone::before         { content: "\f095"; }
.fa-globe::before         { content: "\f0ac"; }
.fa-bars::before          { content: "\f0c9"; }
.fa-envelope::before      { content: "\f0e0"; }
.fa-linkedin-in::before   { content: "\f0e1"; }
.fa-angle-down::before    { content: "\f107"; }
.fa-rocket::before        { content: "\f135"; }
.fa-moon::before          { content: "\f186"; }
.fa-location-dot::before  { content: "\f3c5"; }
.fa-earth-americas::before{ content: "\f57d"; }
.fa-meteor::before        { content: "\f753"; }
.fa-satellite::before     { content: "\f7bf"; }
.fa-satellite-dish::before{ content: "\f7c0"; }
.fa-x-twitter::before     { content: "\e61b"; }
