/* Custom styles for Daigo restaurant website */

/* Base font smoothing */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure hero text is always visible */
#hero h1,
#hero p,
#hero a,
#hero div,
#hero span,
#hero button {
    opacity: 1 !important;
    transform: none !important;
}

/* Nav scroll state */
#navbar.scrolled {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* Selection color */
::selection {
    background: #f5c0a8;
    color: #6d2615;
}

/* Focus visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #d95526;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Reduced motion - ensure content is always visible */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
    html {
        scroll-behavior: auto;
    }
    .menu-card {
        transition: none;
    }
    .menu-card:hover {
        transform: none;
    }
    img:hover {
        transform: none;
    }
}
