top of page

Page Title

This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors. 

Section Title

This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors.

Section Title

This is a Paragraph. Click on "Edit Text" or double click on the text box to start editing the content and make sure to add any relevant details or information that you want to share with your visitors.

Instagram followers

Subscribe to Our Newsletter

Contact Us

bottom of page
document.addEventListener("DOMContentLoaded", () => { // Apri e chiudi il menu const menuItems = document.querySelectorAll(".menu-item"); menuItems.forEach(item => { item.querySelector(".menu-item-header").addEventListener("click", () => { menuItems.forEach(i => { if (i !== item) i.classList.remove("active"); }); item.classList.toggle("active"); }); }); // Funzione di ricerca nel menu const searchBox = document.getElementById("searchBox"); if (searchBox) { searchBox.addEventListener("keyup", function () { let input = this.value.toLowerCase(); let menuItems = document.querySelectorAll(".menu-item"); menuItems.forEach(item => { let title = item.querySelector(".menu-item-header span").innerText.toLowerCase(); let content = item.querySelector(".menu-item-content").innerText.toLowerCase(); if (title.includes(input) || content.includes(input)) { item.style.display = "block"; } else { item.style.display = "none"; } }); }); } });