document.addEventListener('DOMContentLoaded', function () { // Smooth scroll for anchor links const viewCompetitionsBtn = document.querySelector('a[href="#competitions"]'); if (viewCompetitionsBtn) { viewCompetitionsBtn.addEventListener('click', function (e) { e.preventDefault(); document.querySelector('#competitions').scrollIntoView({ behavior: 'smooth' }); }); } });