/* Font Awesome 6 Free Solid - Minimal Version */
/* Only includes icons actually used in the project */

/* Load the Font Awesome font */
@font-face {
    font-family: 'Font Awesome 6 Free Solid';
    src: url('fa-solid-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Base Font Awesome classes */
.fas, .fab {
    font-family: 'Font Awesome 6 Free Solid';
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Brand icon alternatives using solid icons */
.fab.fa-wordpress::before { content: "\f0ac"; } /* Globe icon (good alternative for WordPress) */
.fab.fa-php::before { content: "\f121"; } /* Code icon (good alternative for PHP) */

/* Ensure WordPress and PHP icons display properly */
.fab.fa-wordpress,
.fab.fa-php {
    font-family: 'Font Awesome 6 Free Solid' !important;
    font-weight: 900 !important;
}

.fab.fa-wordpress::before { content: "\f0ac" !important; }
.fab.fa-php::before { content: "\f121" !important; }

/* Icon definitions - only the ones you actually use */
.fa-arrow-left::before { content: "\f060"; }
.fa-arrow-up::before { content: "\f062"; }
.fa-bell::before { content: "\f0f3"; }
.fa-chart-line::before { content: "\f201"; }
.fa-check::before { content: "\f00c"; }
.fa-check-circle::before { content: "\f058"; }
.fa-chevron-down::before { content: "\f078"; }
.fa-clock::before { content: "\f017"; }
.fa-cloud-upload-alt::before { content: "\f382"; }
.fa-code::before { content: "\f121"; } /* PHP icon */
.fa-cog::before { content: "\f013"; }
.fa-comment::before { content: "\f075"; }
.fa-comments::before { content: "\f086"; }
.fa-copy::before { content: "\f0c5"; }
.fa-download::before { content: "\f019"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-euro-sign::before { content: "\f153"; }
.fa-exclamation-circle::before { content: "\f06a"; }
.fa-exclamation-triangle::before { content: "\f071"; }
.fa-eye::before { content: "\f06e"; }
.fa-flag::before { content: "\f024"; }
.fa-gift::before { content: "\f06b"; }
.fa-globe::before { content: "\f0ac"; } /* WordPress icon */
.fa-headset::before { content: "\f590"; }
.fa-heartbeat::before { content: "\f21e"; }
.fa-home::before { content: "\f015"; }
.fa-info-circle::before { content: "\f05a"; }
.fa-key::before { content: "\f084"; }
.fa-layer-group::before { content: "\f5fd"; }
.fa-lightbulb::before { content: "\f0eb"; }
.fa-link::before { content: "\f0c1"; }
.fa-link-slash::before { content: "\f127"; }
.fa-list::before { content: "\f03a"; }
.fa-lock::before { content: "\f023"; }
.fa-map-marker-alt::before { content: "\f3c5"; }
.fa-minus::before { content: "\f068"; }
.fa-palette::before { content: "\f53f"; }
.fa-plus::before { content: "\f067"; }
.fa-puzzle-piece::before { content: "\f12e"; }
.fa-question-circle::before { content: "\f059"; }
.fa-redo::before { content: "\f01e"; }
.fa-road::before { content: "\f018"; }
.fa-rocket::before { content: "\f135"; }
.fa-save::before { content: "\f0c7"; }
.fa-server::before { content: "\f233"; }
.fa-shield-alt::before { content: "\f3ed"; }
.fa-sign-in-alt::before { content: "\f2f6"; }
.fa-sync::before { content: "\f021"; }
.fa-sync-alt::before { content: "\f2f1"; }
.fa-trash::before { content: "\f1f8"; }
.fa-unlock::before { content: "\f09c"; }
.fa-user::before { content: "\f007"; }
.fa-user-check::before { content: "\f4fc"; }
.fa-user-edit::before { content: "\f4ff"; }
.fa-user-plus::before { content: "\f234"; }
.fa-user-times::before { content: "\f235"; }
.fa-users::before { content: "\f0c0"; }
.fa-users-cog::before { content: "\f509"; }
.fa-wrench::before { content: "\f0ad"; }
.fa-times::before { content: "\f00d"; }

/* Font Awesome utilities */
.fa-1x { font-size: 1em; }
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }

.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Spacing utilities */
.fa-me-1 { margin-right: 0.25rem; }
.fa-me-2 { margin-right: 0.5rem; }
.fa-me-3 { margin-right: 1rem; }

/* Text color utilities */
.fa-text-primary { color: #0d6efd; }
.fa-text-success { color: #198754; }
.fa-text-warning { color: #ffc107; }
.fa-text-danger { color: #dc3545; }
.fa-text-dark { color: #212529; }
.fa-text-muted { color: #6c757d; } 