.btnBurger {
	position: absolute;
	right: 1rem;
	top: 1rem;
	background: none;
	border: none;
	cursor: pointer;
	width: fit-content;
	height: fit-content;
	font-size: 2rem;
	color: white;
	z-index: 1001;
	display: none;
}

.mobileNav {
	position: absolute;
	height: 100vh;
	width: 100vw;
	background: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	font-size: 2rem;
	top: 0;

	/* Animations */
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	display: none;
}

.iconCloseMobile {
	position: absolute;
	right: 1.3rem;
	top: 1.2rem;
	color: #d0d09c;
	cursor: pointer;
	font-size: 2rem;
	z-index: 5000;
	width: 2rem;
	height: 2rem;
	background: none;
	border: none;
	outline: none;
}

.navbar-mobile {
	position: relative;
	top: 5rem;
	right: 1.2rem;
	text-align: right;
	list-style: none;
}

.navbar-mobile a {
	color: white;
	text-decoration: none;
	display: block;
	padding: 15px 0;
}

.navactive {
	color: #d0d09c;
	text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

/* Animation d'apparition pour les éléments du menu */
.navbar-mobile li {
	opacity: 0;
	transform: translateX(50px);
}

/* Animation quand le menu s'ouvre */
.mobileNav.active .navbar-mobile li {
	animation: slideInItems 0.6s ease forwards;
}

.mobileNav.active .navbar-mobile li:nth-child(1) {
	animation-delay: 0.1s;
}
.mobileNav.active .navbar-mobile li:nth-child(2) {
	animation-delay: 0.2s;
}
.mobileNav.active .navbar-mobile li:nth-child(3) {
	animation-delay: 0.3s;
}
.mobileNav.active .navbar-mobile li:nth-child(4) {
	animation-delay: 0.4s;
}

@keyframes slideInItems {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
