/* Accessibility Overrides */

/* Hide skip to content link completely */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  display: none;
}

/* Fix potential accessibility contrast issues */
.feature-item {
  color: white;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Ensure all text has adequate contrast on light/dark backgrounds */
@media (max-width: 768px) {
  .hero-title, 
  .hero-subtitle {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .feature-item {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }
}

/* Ensure focus indicators are visible but not distracting */
a:focus, 
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(247, 183, 49, 0.5);
  outline-offset: 2px;
} 