// Main JavaScript file for global functionality document.addEventListener('DOMContentLoaded', function() { // Mobile menu toggle functionality will be handled by the navbar component // Any global JavaScript functionality can go here // Smooth scroll for anchor links document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); document.querySelector(this.getAttribute('href')).scrollIntoView({ behavior: 'smooth' }); }); }); });