document.addEventListener('DOMContentLoaded', function() { // Initialize any global functionality here // Example: Mobile menu toggle would be handled in the navbar component // Smooth scrolling for anchor links document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function(e) { e.preventDefault(); document.querySelector(this.getAttribute('href')).scrollIntoView({ behavior: 'smooth' }); }); }); // Initialize any global event listeners });