/**
 * index.php ile ortak header / tipografi temeli.
 * Türkçe harfler: html/header lang + tam Comfortaa (assets/css/comfortaa.css → Google Fonts).
 */

/* Comfortaa — index.php ile aynı öncelik */
* {
    font-family: 'Comfortaa', sans-serif !important;
}

body,
body div,
body span,
body p,
body a,
body button,
body input,
body select,
body textarea,
body h1, body h2, body h3, body h4, body h5, body h6 {
    font-family: 'Comfortaa', sans-serif !important;
}

/* Font Awesome */
.fa, .fas, .fab, .far, .fa-solid, .fa-brands, .fa-regular {
    font-family: var(--fa-font-family, "Font Awesome 6 Free") !important;
}

.fab, .fa-brands {
    font-weight: 400 !important;
}

/* Tabler Icons (.ti ve ti-*) — global * ile çakışmayı kır */
.ti,
[class^="ti-"] {
    font-family: "tabler-icons" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
}

/* index.php: pc-only / mobile-only görünürlük */
@media only screen and (min-width: 1025px) {
    .mobile-only {
        display: none !important;
    }
    .pc-only {
        display: block !important;
    }
}

@media only screen and (max-width: 1024px) {
    .pc-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

/* Klasik PC header — ortak stiller common_header.php içinde */
.pc-classic-header .pc-lang-btn .fa-chevron-down {
    font-size: 9px !important;
    opacity: 0.55;
    color: #444 !important;
}
