// Bottom Navigation Active Page Detection & Mobile Sidebar Init document.addEventListener('DOMContentLoaded', function() { const currentPath = window.location.pathname; const navLinks = document.querySelectorAll('.bottom-nav .nav-link'); navLinks.forEach(link => { const href = link.getAttribute('href'); // Check if current path matches the link href if (currentPath === href || currentPath.endsWith(href.split('/').pop())) { link.classList.add('active'); } else { link.classList.remove('active'); } }); // Hide sidebar by default on mobile if (window.innerWidth <= 768) { document.getElementById('sidebar').classList.add('hidden'); } });