document.addEventListener('DOMContentLoaded', () => { const navbar = document.querySelector('.navbar'); window.addEventListener('scroll', () => { if (window.scrollY > 50) { navbar.style.background = 'rgba(15, 23, 42, 0.98)'; } else { navbar.style.background = 'rgba(15, 23, 42, 0.9)'; } }); document.querySelectorAll('a[href^="#"]').forEach(anchor => { anchor.addEventListener('click', function (e) { e.preventDefault(); const target = document.querySelector(this.getAttribute('href')); if (target) { target.scrollIntoView({ behavior: 'smooth', block: 'start' }); } }); }); });