/*
Theme Name:  Visit Morocco Today
Theme URI:   https://example.com/visit-morocco-today/
Author:      EL-Guennouni Abdelilah
Author URI:  https://example.com/
Description: This is the official theme for Visit Morocco Today, designed to offer an immersive and beautiful user experience.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: visitmoroccotoday
Requires at least: 6.2
Tested up to: 6.5
Requires PHP: 7.4
*/

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-10px);
	}
}
@keyframes pulseGlow {
	0% {
		box-shadow: 0 0 20px rgba(192, 100, 64, 0.4);
	}
	100% {
		box-shadow: 0 0 40px rgba(192, 100, 64, 0.8);
	}
}

.glass,
.glass-dark {
	backdrop-filter: blur(10px);
}

.glass {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
	background: rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-parallax {
	transform: translateY(var(--scroll-y, 0));
}