document.addEventListener("scroll", function () { const section1 = document.getElementById("sezione-1-hero-movimento"); const section2 = document.getElementById("sezione-2-hero-movimento"); const scrollPosition = window.scrollY;
if (scrollPosition > 3000) { // Soglia di scroll section1.classList.add("hidden"); } else { section1.classList.remove("hidden"); }
if (scrollPosition > 5000) { // Soglia di scroll section2.classList.add("hidden"); } else { section2.classList.remove("hidden"); } });