html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0f0f;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff5a00;
}

.smoke-overlay {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.015' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: screen;
    animation: drift 60s linear infinite;
}

@keyframes drift {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 1000px; }
}

.grill-glow {
    transition: all 0.3s ease;
}

.grill-glow:hover {
    box-shadow: 0 0 30px rgba(255, 90, 0, 0.15), inset 0 0 20px rgba(255, 179, 0, 0.05);
    border-color: rgba(255, 90, 0, 0.3);
    transform: translateY(-5px);
}

.menu-card-image {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.grill-glow:hover .menu-card-image {
    transform: scale(1.05);
}

.gs-reveal {
    opacity: 0;
    visibility: hidden;
}
