html {
	position: relative;
	min-height: 100%;
}
body {
	/* Margin bottom by footer height */
	margin-bottom: 280px;
	font-family: 'Helvetica', 'Arial', sans-serif;
	background-color: #f9f9f9;
}

.footer {
	width: 100%;
	/* Set the fixed height of the footer here */
	height: 280px;
	line-height: 280px; /* Vertically center the text there */
}

.hero-flex {
	display: flex !important;
}

.event {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(5, 1fr);
	grid-column-gap: 0px;
	grid-row-gap: 0px;
}

.div1 {
	grid-area: 1 / 1 / 2 / 2;
}
.div2 {
	grid-area: 1 / 5 / 2 / 6;
}
.div3 {
	grid-area: 3 / 1 / 4 / 2;
}
.div4 {
	grid-area: 3 / 5 / 4 / 6;
}
.div5 {
	grid-area: 2 / 3 / 3 / 4;
}

.text-dramatic {
	font-family: 'league_spartanbold', 'Times New Roman', sans-serif;
}
.slogan {
	line-height: 90px !important;
}
.underline-draw {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start; /* Le SVG s'aligne sous le texte */
	margin-right: 30px;
	position: relative;
}

.underline-draw > :first-child {
	display: block;
	text-decoration: none;
	padding-bottom: 2px;
	margin: 0;
}

.underline-draw svg {
	width: 95%;
	height: 12px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

/* Couleurs */
.underline-draw--act {
	--underline-color: #54323c;
}
.underline-draw--participate {
	--underline-color: #00af96;
}
.underline-draw--shop {
	--underline-color: #64c8ff;
}
.underline-draw--about {
	--underline-color: #fbba00;
}
.underline-draw--press {
	--underline-color: #ff516d;
}
.underline-draw--donate {
	--underline-color: #ff6532;
}

.story-bloc p {
	margin: 0 0 1rem 0;
}
.story-bloc p:last-child {
	margin: 0;
}
.story-bloc ul {
	margin: 0 1.2rem;
}
.story-bloc ul li {
	list-style: disc;
	padding: 0 0.3rem 0.5rem 0.3rem;
}
.story-bloc a {
	text-decoration: underline;
}
.story-bloc a:hover {
	color: #ea5e45;
}
.faq-accordion {
	summary::-webkit-details-marker {
		display: none;
	}
	summary {
		list-style: none;
	}
}
.text-shadow {
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}
.nav-link-desktop {
	transition: padding-bottom .3s ease;
	padding: 0;
	position: relative;
	display: inline-block;
	text-decoration: none;
}
.nav-link-desktop::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 5px;
	bottom: -18px;
	opacity: 0;
	transform: translateY(0);
	transition:
		transform .3s ease,
		opacity   .3s ease;
}
.nav-link-desktop.nav-link-desktop--act::after {
	background: #ff6532;
}
.nav-link-desktop.nav-link-desktop--participate::after {
	background: #00af96;
}
.nav-link-desktop.nav-link-desktop--shop::after {
	background: #64c8ff;
}
.nav-link-desktop.nav-link-desktop--about::after {
	background: #fbba00;
}
.nav-link-desktop.nav-link-desktop--press::after {
	background: #ff516d;
}
.nav-link-desktop.nav-link-desktop--donate::after {
	background: #ff6532;
}
.nav-link-desktop:not(.active)::after {
	opacity: 0;
}
.nav-link-desktop.active::after {
	opacity: 1;
}
.nav-link-desktop:hover::after {
	transform: translateY(-8px);
	opacity: 1;
}
