/**
 * Lushanth Design System — Animations Stylesheet
 * Keyframes, Glow Effects, and Micro-interactions
 */

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(43, 77, 255, 0.2); }
    50% { box-shadow: 0 0 35px rgba(43, 77, 255, 0.55); }
    100% { box-shadow: 0 0 15px rgba(43, 77, 255, 0.2); }
}

@keyframes floatGentle {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

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

.animate-glow {
    animation: pulseGlow 3s infinite;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}
