/* Tailwind handles most things now. 
   Keeping this for specific animations not easily done with utility classes alone */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    /* Start hidden */
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* Custom Cursor */
.cursor-dot {
    pointer-events: none;
    z-index: 9999;
}

.cursor-outline {
    pointer-events: none;
    z-index: 9999;
}

/* Glass Hover Effect for Cards */
.glass-hover:hover {
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.08);
}