/* Custom styles for Rachel's Country Kitchen */

/* Smooth scrolling is handled via HTML scroll-smooth */

/* Selection color */
::selection {
    background-color: rgba(154, 30, 55, 0.15);
    color: #6b1a2e;
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 2px solid #9a1e37;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Print styles */
@media print {
    nav,
    #contact,
    .reveal {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
    }
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Better text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
