/* Lavender Patch Child Care — Custom Styles */

/* Base reset & typography refinements */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    line-height: 1.6;
}

/* Selection color */
::selection {
    background: rgba(201, 162, 39, 0.3);
    color: #f5f5f0;
}

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

/* Smooth image loading */
img {
    display: block;
    max-width: 100%;
}

/* Reduce motion preference */
@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;
    }
}

/* Print styles */
@media print {
    nav, .no-print {
        display: none !important;
    }
    body {
        background: white;
        color: black;
    }
}
