/* Custom styles that complement Tailwind */

/* Smooth focus styles */
*:focus-visible {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background-color: rgba(255, 107, 53, 0.3);
    color: #fff;
}

/* Reduced motion - ensure content is visible without JS */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    html {
        scroll-behavior: auto;
    }
    .hero-img {
        transition: none;
    }
}

/* Print styles */
@media print {
    header, footer, #contact-form, .btn-coral, .btn-charcoal {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}
