document.addEventListener('DOMContentLoaded', function () {
const menuLinks = document.querySelectorAll('.elementor-nav-menu a');
menuLinks.forEach(function(link) {
link.addEventListener('click', function () {
// Remove the class that keeps the dropdown open
document.body.classList.remove('elementor-nav-menu--dropdown-active');
// Reset styles to prevent scroll
document.body.style.overflow = 'auto';
document.body.style.position = 'static';
// Also hide the dropdown if it's still visible
const dropdown = document.querySelector('.elementor-nav-menu--dropdown');
if (dropdown) {
dropdown.style.display = 'none';
}
});
});
});