/**
 * Accessibility styles for Papye Lakay
 * Contains utility classes for accessibility improvements
 */

/* Visually hidden elements (accessible to screen readers but not visually displayed) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #c32525;
  outline-offset: 2px;
}

/* Skip to main content link - becomes visible on focus */
.skip-to-main {
  position: absolute;
  top: -50px;
  left: 0;
  background: #c32525;
  color: #fff;
  padding: 8px 15px;
  z-index: 9999;
  transition: top 0.3s ease;
}

.skip-to-main:focus {
  top: 0;
}
