/* ============================================================
   WPlama — Přístupnost (a11y)
   ============================================================ */

/* ---- Skip-to-content odkaz ----
   Skrytý, dokud nedostane fokus klávesnicí (Tab z úplného začátku). */
.wpl-skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100001;            /* nad hlavičkou i overlay */
  display: inline-block;
  padding: 12px 18px;
  background: var(--wpl-cta, #C2410C);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: top 0.15s ease;
}

.wpl-skip-link:focus,
.wpl-skip-link:focus-visible {
  top: 12px;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Cíl skip-linku nesmí mít rušivý focus ring (přesun fokusu je programový) */
#main-content:focus {
  outline: none;
}

/* ---- Respektuj prefers-reduced-motion ----
   Uživatelé s touto preferencí (vestibulární potíže) — vypnout
   animace, transitions, smooth-scroll a progress bar pohyb. */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: auto !important;
  }

  /* Progress bar — bez plynulého růstu (jen skok), ať nepřitahuje pozornost */
  .wpl-scroll-progress {
    transition: none !important;
  }

  /* Hover posuny (sociály, tlačítka) bez „nadskočení" */
  .wpl-socials a:hover,
  .wpl-footer-menu li a:hover {
    transform: none !important;
  }
}
