@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;500;600;700&display=swap');

body {
	font-family: 'Urbanist', sans-serif;
	background-color: #f4f7f5;
	color: #2d3732;
}

.ux-veil-hide {
	display: none !important;
	opacity: 0;
	transform: translateY(30px);
}
.ux-reveal-active {
	display: block !important;
	opacity: 1;
	transform: translateY(0);
	animation: elevation-lift-soft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ux-instant-view {
	display: block !important;
	opacity: 1;
	transform: translateY(0);
}

@keyframes elevation-lift-soft {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.elem-float-motion {
	animation: float-drift-loop 6s ease-in-out infinite;
}

@keyframes float-drift-loop {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0px);
	}
}

.elem-pulse-glow {
	animation: aura-glow-pulse 2s infinite;
}

@keyframes aura-glow-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(46, 125, 96, 0.4);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(46, 125, 96, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(46, 125, 96, 0);
	}
}
