/* 
    Dimmick's Roadway Cafe Custom Styles
    Theme: Classic, Elegant, Emerald & Cream
*/

html {
    scroll-behavior: smooth;
}

body {
    /* Fallback color if Tailwind config fails */
    background-color: #fdfbf7;
}

/* Smooth fade in for images */
img {
    opacity: 0;
    animation: fadeIn 0.8s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fdfbf7;
}

::-webkit-scrollbar-thumb {
    background: #064e3b;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #022c22;
}

/* Asymmetric Hero Adjustments */
@media (min-width: 768px) {
    header {
        align-items: stretch;
    }
}

/* Mobile Menu Transition */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
