SAYFAMIZ YAPIM AŞAMASINDADIR.
(function () {
function forceMobileWhiteLinks() {
if (window.innerWidth > 991) return;
// Linkler + içindeki tüm elemanlar (span dahil)
document.querySelectorAll('.inner-nav a, nav a, header a').forEach(a => {
a.style.setProperty('color', '#fff', 'important');
a.querySelectorAll('*').forEach(el => {
el.style.setProperty('color', '#fff', 'important');
});
});
// İkonlar (ekstra garanti)
document.querySelectorAll('.inner-nav i, nav i, header i').forEach(i => {
i.style.setProperty('color', '#fff', 'important');
});
}
window.addEventListener('load', forceMobileWhiteLinks);
window.addEventListener('scroll', forceMobileWhiteLinks, { passive: true });
window.addEventListener('resize', forceMobileWhiteLinks);
})();