/* Custom styles for New Star Chinese Restaurant */

/* Smooth reveal animations (progressive enhancement - only active when JS enables) */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #faf5e8;
}
::-webkit-scrollbar-thumb {
    background: #d4a856;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c49240;
}

/* Navbar scroll state */
.navbar-scrolled {
    background: rgba(253, 251, 247, 0.97) !important;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

/* Image loading placeholder */
img {
    background-color: #f4e9cc;
}

/* Selection color */
::selection {
    background-color: #d4502a;
    color: #fdfbf7;
}
