// Make the modal show when the Catalog menu item is clicked
document.body.addEventListener('click', function (e) {
const target = e.target.closest('a');
if (
target &&
target.textContent.trim().toLowerCase() === 'catalog'
) {
e.preventDefault();
openBookingModal('continueBookTours'); // Reuse the same redirect
}
});