/* Jihef Photo — custom styles beyond Tailwind utilities (see DESIGN.md) */

/* Pop-cyan text selection */
::selection {
    background: #00B8E6;
    color: #0A0A0A;
}

/* Dark-scheme form controls (date picker, selects render dark natively) */
:root {
    color-scheme: dark;
}

/* <dialog> lightbox: fill viewport, no UA chrome */
dialog#lightbox {
    border: none;
    outline: none;
}
dialog#lightbox::backdrop {
    background: rgba(0, 0, 0, 0.92);
}

/* Keyboard focus visibility on gallery tiles (boxes clipped by overflow) */
.lightbox-item:focus-visible {
    outline-offset: -2px;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
