/* Custom Styles for Red Star Drive-In */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fcfaf8; /* sand-50 */
}

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

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

/* Typography adjustments */
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-sans {
    font-family: 'Lato', sans-serif;
}

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

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

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

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

/* Mobile menu transitions */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}
