/* Custom Styles for Sheba Restaurant */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #f8fafc; /* slate-50 */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #711d3f; /* plum-900 */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a11d4b; /* plum-700 */
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Navbar Glass Effect */
.nav-scrolled {
    background: rgba(61, 8, 28, 0.95); /* plum-950 with opacity */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Image Hover Zoom */
img {
    max-width: 100%;
    height: auto;
}
