/* Nearly Perfect Rooms - Custom Styles
 * These styles supplement Tailwind CSS
 */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Remove focus outline for mouse users, keep for keyboard */
:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Smooth transitions for links and buttons */
a,
button {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

/* Prose styles for legal pages */
.prose h2 {
    scroll-margin-top: 4rem;
}

.prose a {
    color: #1e40af;
    text-decoration: none;
}

.prose a:hover {
    text-decoration: underline;
}

/* Loading state for HTMX */
.htmx-request {
    opacity: 0.7;
    cursor: wait;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #1e40af;
    color: white;
    padding: 8px 16px;
    z-index: 100;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}
