/* Add custom Js styles below */
// الخطوط
const cairoFont = `
`;
document.head.insertAdjacentHTML("beforeend", cairoFont);
// جزء تصميم الاقسام
document.addEventListener("DOMContentLoaded", function () {
const target = document.querySelector(".s-block");
if (!target) return;
target.insertAdjacentHTML("afterend", `
`);
});
// Footer
document.addEventListener("DOMContentLoaded", function () {
const h3 = document.querySelector('footer a h3');
if (!h3) return;
const link = h3.parentElement;
const img = document.createElement("img");
img.src = "https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/zNOXA/WLDd4lrni9ggf1lW3OrdnYURm2OLIWp8RosVdPvJ.png";
img.alt = "Make Art";
img.classList = "Img-Footer-Logo";
img.style.height = "100px";
img.style.width = "auto";
h3.remove();
link.appendChild(img);
});
document.addEventListener("DOMContentLoaded", function () {
const copyright = document.querySelector(".copyright-text p");
if (copyright) {
copyright.innerHTML = `
صنع بإتقان 2026 |
فزعة
`;
}
});