/* Custom styles that can't be done with Tailwind */
body {
    scroll-behavior: smooth;
}

/* Animation for menu cards */
.menu-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Custom button styles */
.btn-primary {
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
}