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

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

::-webkit-scrollbar-thumb {
    background: #009688; /* Larbi Teal */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00796B;
}

/* Smooth Scroll Behavior is handled by Tailwind 'scroll-smooth' class on html */

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

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

/* Menu Item Hover Effects */
.menu-item {
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}
