/* SECTION HERO */
.hero {
	width: 100%;
	padding: 80px 20px 100px 20px;
	background: linear-gradient(180deg, #ffffff 0%, #ffeaea 100%);
	text-align: center;
}

/* CONTENU */
.hero-content {
	max-width: 340px;
	margin: auto;
}

/* TITRE */
.hero h1 {
	font-size: 28px;
	color: #2b2628;
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	margin-bottom: 20px;
}

/* PARAGRAPHE */
.hero p {
	font-size: 16px;
	color: #2b2628;
	font-family: 'Open Sans', sans-serif;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 40px;
}

/* CTA */
.cta {
	display: inline-block;
	background: #e9302a; /* ton rouge eDary */
	color: white;
	padding: 14px 24px;
	border-radius: 50px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: 0.2s ease;
}

.cta:hover {
	background: #c52924;
}

/* RESPONSIVE MOBILE */
@media ( max-width : 768px) {
	.hero {
		padding: 60px 20px 80px 20px;
	}
	.hero h1 {
		font-size: 24px;
	}
	.hero p {
		font-size: 14px;
	}
}