document.addEventListener('DOMContentLoaded', function () {
// Update selector to match your actual header class
const header = document.querySelector('.wp-block-group.has-text-color.has-global-padding.is-content-justification-center');
if (!header) {
console.error('Header element not found!');
return;
}
let lastScrollY = window.scrollY || 0;
window.addEventListener('scroll', function () {
if (window.scrollY < lastScrollY) {
// Scrolling up - show the menu
header.classList.add('menu-visible');
} else {
// Scrolling down - hide the menu
header.classList.remove('menu-visible');
}
lastScrollY = window.scrollY;
});
});