/* Custom styles for Davis Donut House */

/* Base reset adjustments */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

/* Selection color */
::selection {
    background: #fbcfe8;
    color: #500724;
}

/* Smooth focus styles */
a:focus-visible,
button:focus-visible {
    outline: 1px solid #d97706;
    outline-offset: 2px;
}

/* Image placeholder fallback */
img {
    image-rendering: auto;
}

/* Subtle page background texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(157, 23, 77, 0.015) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: -1;
}
