/**
 * Font Awesome Brands Font Fallback
 * Brands font dosyaları eksikse hata vermemesi için fallback
 */

/* Brands font fallback - Eğer dosya yoksa solid font kullan */
@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../lib/webfonts/fa-solid-900.woff2") format("woff2"),
         url("../lib/webfonts/fa-solid-900.ttf") format("truetype");
}

/* Brands icon'ları solid font ile göster (fallback) */
.fa-brands,
.fab {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

