#landing__background {
	position: absolute;
	z-index: -1;
	width: 100vw;
}

#landing__background > img {
	width: 100%;
}

.hero__container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: clamp(1.5rem, 1.119rem + 0.734vw, 2rem);	
	
	padding-block-start: clamp(0.5rem, 0.119rem + 0.734vw, 1rem);
	
	text-align: center;
}

.hero__heading {
	display: flex;
	flex-direction: column;
	gap: clamp(0.5rem, 0.119rem + 0.734vw, 1rem);
}

.hero__title--accent {
	position: relative;

	z-index: 0;
	bottom: clamp(0.625rem, 0.268rem + 0.688vw, 1.094rem); /* wtf ??? */
	transform: rotate(-1.25deg);

	display: block;
    width: fit-content;
    margin: 0 auto;

	font-size: clamp(2.75rem, 2.1rem + 3.25vw, 6rem);
	text-shadow: rgba(0, 0, 0, 0.75) 0px 0px 5px;
}

.hero__title--accent::after {
    content: "";

    position: absolute;
    bottom: -20%;
    left: 50%;
    z-index: -1;

    transform: translateX(-50%) rotate(-1.25deg);

    width: 110%; /* Valeur à modifier en fonction de la taille du texte - NE RIEN TOUCHER D'AUTRE */
    aspect-ratio: 8.427/1;

    background-image: url("../img/stroke.svg");
    background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.hero__description {
    z-index: 0;
}

.hero__video {
	width: 85vw;
	aspect-ratio: 16/9;

	margin: 0 auto;

	border-radius: clamp(1.2rem, 0.179vw + 1.143rem, 1.4rem);

	overflow: hidden;
}

.hero__video iframe {
	border: none;
}

/* Gère la taille de la vidéo pour toutes les tailles d'écrans */

@media (min-width: 576px) {
	.hero__video {
		width: 72.5vw;
	}
}

@media (min-width: 768px) {
	.hero__video {
		width: 60vw;
	}
}

@media (min-width: 1024px) {
	.hero__video {
		width: 45vw;
	}
}

@media (min-width: 1440px) {
	.hero__video {
		width: 35vw;
	}
}

@media (min-width: 2560px) {
	.hero__video {
		width: 25vw;
	}
}