/**
 * Skip Navigation — Keyboard accessibility aid.
 *
 * Visually hidden link that becomes visible on focus.
 * Allows keyboard users to skip past navigation directly to main content.
 *
 * Usage:
 *   <a href="#main-content" class="skip-nav">Skip to main content</a>
 *   ...
 *   <main id="main-content">...</main>
 */

.skip-nav {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    padding: 12px 24px;
    background: #0f0f14;
    color: #60a5fa;
    border: 2px solid #60a5fa;
    border-radius: 0 0 8px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    white-space: nowrap;
    transition: top 0.2s ease;
}

.skip-nav:focus {
    top: 0;
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

/* Use house color if available */
.skip-nav:focus {
    color: var(--house-primary, #60a5fa);
    border-color: var(--house-primary, #60a5fa);
    outline-color: var(--house-primary, #60a5fa);
}
