/* Custom styles complementing Tailwind */
:root {
    --burgundy: #802032;
    --burgundy-dark: #6d1a2a;
    --blush: #ff9884;
    --cream: #fffcf9;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fffcf9;
}
::-webkit-scrollbar-thumb {
    background: #f0c4c4;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #cc6666;
}

/* Selection color */
::selection {
    background: #f9e4e4;
    color: #5a1420;
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 3px solid #802032;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    nav, .mobile-menu, #contact-form {
        display: none;
    }
    body {
        color: #000;
        background: #fff;
    }
}
