/**
 * JamWatHQ Accessibility Fixes
 * WCAG 2.2 Level A/AA Compliance
 * Created: 2026-01-10
 */

/* ============================================
   SKIP NAVIGATION LINK
   WCAG 2.2 Level A - Criterion 2.4.1 Bypass Blocks
   Allows keyboard users to skip repetitive navigation
   ============================================ */

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #ffee00;  /* Jamaica yellow */
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  font-weight: bold;
  border-radius: 0 0 4px 0;
}

.skip-link:focus,
.skip-link:hover {
  top: 0;
  outline: 2px solid #000;
  outline-offset: 2px;
}
