document.addEventListener("DOMContentLoaded", function () { // 1. إزالة الخطوط القديمة const oldFonts = document.querySelectorAll('link[href*="fonts.googleapis"], link[href*="gstatic"]'); oldFonts.forEach(f => f.remove()); // 2. إضافة خط Scheherazade New const fontLink = document.createElement("link"); fontLink.rel = "stylesheet"; fontLink.href = "https://fonts.googleapis.com/css2?family=Scheherazade+New:wght@600&display=swap"; document.head.appendChild(fontLink); const globalFontStyle = document.createElement("style"); globalFontStyle.innerHTML = ` * { font-family: 'Scheherazade New', serif !important; font-weight: 700 !important; } `; document.head.appendChild(globalFontStyle); // 3. إضافة شريط العروض بعد التأكد من وجود الهيدر const interval = setInterval(() => { const header = document.querySelector("header"); if (header && !document.querySelector("#national-offer-bar")) { const offerBar = document.createElement("div"); offerBar.id = "national-offer-bar"; offerBar.innerHTML = `أقوى عروض اليوم الوطني 95 • أقوى عروض اليوم الوطني 95 • أقوى عروض اليوم الوطني 95`; header.parentNode.insertBefore(offerBar, header); clearInterval(interval); } }, 500); // 4. CSS و HTML للڤيديو بانر const style = document.createElement("style"); style.innerHTML = ` .custom-video-banner { position: relative; width: 100%; height: 600px; overflow: hidden; border-radius: 12px; } .custom-video-banner video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; } .custom-video-banner::after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.25); } .custom-video-banner .banner-text { display: none; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: #f9f3e7; font-family: 'Scheherazade New', serif; font-weight: 600; font-size: 1rem; opacity: 0.7; z-index: 2; padding: 0 15px; line-height: 1.5; } .custom-video-banner .banner-btn { display: none; margin-top: 12px; padding: 10px 24px; border-radius: 8px; background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); color: #f9f3e7; font-weight: bold; text-decoration: none; transition: all 0.3s ease; } .custom-video-banner .banner-btn:hover { background: rgba(249,243,231,0.3); transform: scale(1.05); } @media(max-width: 767px) { .custom-video-banner { height: 330px; } } @media(min-width: 768px) { .custom-video-banner { height: 610px; } } `; document.head.appendChild(style); // 5. استبدال السيكشن بالصورة بالڤيديو const targetImage = document.querySelector( 'section.s-block img[src*="https://cdn.salla.sa/form-builder/g1JfpIhm727wxtYqUyJQC9p8hmyQVmcdIoFuuUwF.png"]' ); if (targetImage) { const section = targetImage.closest("section.s-block"); if (section) { section.innerHTML = `
`; } } });