/* Custom Styles for Hibachi Grill Buffet */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #FFF8F0;
}
::-webkit-scrollbar-thumb {
    background: #800020;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #5c0017;
}

/* Geometric Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    z-index: -1;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 8px 8px 0px #800020;
}

/* Text Selection */
::selection {
    background: #FFDAB9;
    color: #800020;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Geometric Pattern Background */
.pattern-bg {
    background-color: #FFF8F0;
    background-image: radial-gradient(#800020 0.5px, transparent 0.5px), radial-gradient(#800020 0.5px, #FFF8F0 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.1;
}
