Scroll to Top
document.addEventListener("DOMContentLoaded", function () {
const anchor = window.location.hash;
if (anchor) {
setTimeout(() => {
const el = document.querySelector(anchor);
if (el) {
el.scrollIntoView({ behavior: "smooth", block: "start" });
}
}, 500); // delay in ms — you can increase this if images load slowly
}
});