// footer scroll top document.addEventListener("DOMContentLoaded", function () { const btn = document.querySelector('.back-to-top'); if (!btn) return; window.addEventListener('scroll', function () { btn.classList.toggle('visible', window.scrollY > 300); }); });