/**
 * Skip Navigation Link
 * Aravrit Accessibility Plugin
 */

/* Screen-reader-only utility class — used throughout the plugin */
.aravrit-sr-only,
.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Skip link — visible only on keyboard focus */
.aravrit-skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    z-index: 100000;
    display: block;
    padding: 12px 24px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 6px 0;
    transition: top 0.15s ease;
    outline: 3px solid #fff;
    outline-offset: -3px;
}

/* Hebrew RTL version */
.aravrit-skip-link--he {
    left: auto;
    right: 0;
    border-radius: 0 0 0 6px;
}

.aravrit-skip-link:focus,
.aravrit-skip-link:active {
    top: 0 !important;
    position: fixed !important;
    width: auto !important;
    height: auto !important;
    clip: auto !important;
    white-space: normal !important;
}
