/* Custom styles supplementing Tailwind */

/* Smooth focus outlines */
*:focus-visible {
    outline: 2px solid #7B2D3B;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background-color: #7B2D3B;
    color: white;
}

/* Image loading placeholder */
img {
    background-color: #e8e4e0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .marquee {
        animation: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    nav, #backToTop, .marquee, .geo-circle, .geo-rect, .geo-line {
        display: none !important;
    }
    body {
        color: #1a1714;
        background: white;
    }
}
