/* B and R Restaurant and Bar B Que — Custom Styles */

/* Base reset & typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background: #0d0d0d;
    color: #f5f0eb;
    line-height: 1.6;
}

/* Selection color */
::selection {
    background: rgba(212, 168, 83, 0.3);
    color: #f5f0eb;
}

/* Smooth image loading */
img {
    image-rendering: auto;
    loading: lazy;
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #D4A853;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Custom cursor glow on interactive elements */
a, button {
    cursor: pointer;
}

/* Print styles */
@media print {
    nav, .mobile-menu, #menuOverlay { display: none !important; }
    body { background: white; color: black; }
    .hero-grid { min-height: auto; }
}
