// Function to open the menu and hide the hamburger button
function openMenu() {
document.getElementById("menu-phone").style.display = "block";
document.getElementById("menuButton").style.display = "none"; // Hide the hamburger button
}
// Function to close the menu and show the hamburger button
function closeMenu() {
document.getElementById("menu-phone").style.display = "none";
document.getElementById("menuButton").style.display = "block"; // Show the hamburger button again
}
// Close the menu if clicked outside of it
window.onclick = function(event) {
if (!event.target.matches('.menu-button-phone') && !event.target.matches('.menu-phone, .menu-phone *')) {
closeMenu();
}
}