🧭 Feature: Navbar responsive avec menu mobile

Story 2.1:
- Navbar sticky avec logo et liens de navigation
- Menu hamburger pour mobile (< 1024px)
- JavaScript vanilla pour toggle menu et effet scroll
- Accessibilité complète (aria-expanded, Escape, focus)
- Classes CSS nav-link et nav-link-active
- Intégration dans index.php avec $currentPage

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-22 22:52:30 +01:00
parent 5b10afb6db
commit 95ea9f760a
4 changed files with 180 additions and 0 deletions

View File

@@ -160,6 +160,17 @@
.breadcrumb-current {
@apply text-text-primary;
}
/* Navigation links */
.nav-link {
@apply px-4 py-2 text-sm font-medium text-text-secondary
hover:text-text-primary transition-colors rounded-lg
hover:bg-surface-light;
}
.nav-link-active {
@apply text-primary bg-primary/10;
}
}
@layer utilities {