document.addEventListener('DOMContentLoaded', function() { const dropdown = document.querySelector('.dropdown'); const menuButton = document.querySelector('.menu-button'); const dropdownContent = document.querySelector('.dropdown-content'); menuButton.addEventListener('click', function(e) { e.preventDefault(); dropdownContent.style.display = dropdownContent.style.display === 'block' ? 'none' : 'block'; }); // Close dropdown when clicking outside window.addEventListener('click', function(e) { if (!dropdown.contains(e.target)) { dropdownContent.style.display = 'none'; } }); });