@import url('kto-logo-global.css');
/**
 * 시각장애인·청각장애인 접근성
 * - 스크린리더, 키보드 탐색, 포커스 표시
 */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 12px 20px;
  background: #0f4c81;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
  top: 0;
  outline: 3px solid #ffcc00;
  outline-offset: 2px;
}

/* 키보드 포커스 명확히 */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #0f4c81;
  outline-offset: 2px;
}
button:focus, .cat-btn:focus, .btn-search:focus {
  outline: 2px solid #ffcc00;
  outline-offset: 2px;
}

/* 포커스 시 가시성 */
.dest-card:focus, .product-card:focus-within,
a:focus-visible, button:focus-visible {
  outline: 2px solid #0f4c81;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* 시각·청각장애인 - 최소 글자 크기, 명확한 대비 */
@media (prefers-contrast: more) {
  body { color: #111; }
  .desc, .footer-logo { color: #444; }
}

/* 스크린리더 전용 (보이지 않지만 읽힘) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
