/* Add any custom CSS styles here */
/* These will override Tailwind classes if needed */

/* Example: Custom smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Example: Custom hover effect for menu items */
.menu-item:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease;
}