document.addEventListener("DOMContentLoaded", function () { // إزالة أي كود قديم const oldHeaderSocials = document.querySelector(".custom-header-socials"); if (oldHeaderSocials) oldHeaderSocials.remove(); const oldStrip = document.querySelector(".custom-social-strip"); if (oldStrip) oldStrip.remove(); const header = document.querySelector("header"); if (!header) return; const strip = document.createElement("div"); strip.className = "custom-social-strip"; strip.innerHTML = ` `; header.insertAdjacentElement("afterend", strip); }); const tajawalFont = document.createElement('link'); tajawalFont.rel = 'stylesheet'; tajawalFont.href = 'https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;600;700;800;900&display=swap'; document.head.appendChild(tajawalFont);