/**
 * Cospixare Academy - Lightweight Animations
 */

/* Pulse dot on Admissions Open badge */
@keyframes cospixare-pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 6px rgba(5, 150, 105, 0);
	}
	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
	}
}

.badge-dot.pulse {
	animation: cospixare-pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

/* Subtle fade in on scroll */
@keyframes fadeInSlideUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-up {
	animation: fadeInSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
