/**
 * FontAwesome Fix CSS
 * Ensures FontAwesome icons work properly with CDN fonts
 * Loaded after vendor.css to override any local font references
 */

/* Ensure FontAwesome icons display correctly */
.fa, .fas, .far, .fal, .fab {
    font-family: FontAwesome, sans-serif !important;
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
}

/* Fix for missing icons */
.fa:before {
    font-family: FontAwesome !important;
}

/* Social media icons fix */
.fa-instagram:before { content: "\f16d"; }
.fa-linkedin:before { content: "\f0e1"; }
.fa-facebook:before { content: "\f09a"; }
.fa-twitter:before { content: "\f099"; }
.fa-youtube:before { content: "\f167"; }

/* Hide any font loading errors in console */
@media screen {
    .fa {
        font-family: FontAwesome, "Font Awesome 5 Free", "Font Awesome 5 Brands", sans-serif !important;
    }
}