/* main.css */

/* =============================================
   SKIP LINKS - Accessibility Enhancement
   These links are hidden off-screen until focused
   via keyboard navigation (Tab key)
============================================= */

.skip-links {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #4361ee;
  color: #ffffff;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  z-index: 9999;
  transition: top 0.2s ease;
}

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

.skip-link:hover {
  background: #364dd0;
  color: #ffffff;
}
