/* Hero Video Section */
.hero-video {
	position: relative;
	height: 50vh;
	min-height: 400px;
	overflow: hidden;
	margin-top: 70px;
}

.hero-video video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(254, 142, 15, 0.8) 0%, rgba(32, 32, 32, 0.7) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-overlay h1 {
	color: white;
	font-size: 4rem;
	font-weight: 900;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
	letter-spacing: 2px;
}

/* Main Content */
.about-main {
	background: linear-gradient(180deg, #ffffff 0%, #E4E2DD 100%);
}

.about-main section {
	padding: 40px 0;
}

.about-main .future-section {
	background: linear-gradient(135deg, #FE8E0F 0%, #FF6B35 100%);
	color: white;
	text-align: center;
	border-radius: 20px;
	padding: 60px 40px;
	margin: 0 20px;
}

/* Intro Section */
.intro-section {
	text-align: center;
	padding: 60px 0 40px;
}

.main-title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.3;
	color: #202020;
	max-width: 900px;
	margin: 0 auto;
}

.highlight {
	color: #FE8E0F;
	position: relative;
	display: inline-block;
	font-weight: 400;
	font-size: 2rem;
}

.highlight-text {
	background: #FE8E0F;
	color: white;
	padding: 0.2em 0.4em;
	border-radius: 3px;
	font-weight: 600;
	display: inline-block;
	transform: rotate(-1deg);
}

/* Story Section */
.story-section {
	background: white;
	border-radius: 20px;
	padding: 60px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	margin: 40px 20px; /* Ajout de marge supérieure */
}

.story-content {
	max-width: 900px; /* Limite la largeur pour meilleure lisibilité */
	margin: 0 auto;
}

.story-text {
	font-size: 1.25rem;
	line-height: 1.8;
	color: #202020;
	margin-bottom: 3rem;
	padding-bottom: 2rem; /* Espace avant le milestone */
}

.milestone {
	display: flex;
	gap: 2rem;
	background: #FFF5E6;
	padding: 2.5rem; /* Augmentation du padding interne */
	border-radius: 15px;
	border-left: 5px solid #FE8E0F;
	margin-top: 2rem; /* Espace au-dessus */
}

.milestone-icon {
	font-size: 3rem;
	color: #FE8E0F;
	flex-shrink: 0;
	margin-top: 0.5rem; /* Petit décalage visuel */
}

.milestone-content h3 {
	font-size: 1.5rem;
	color: #FE8E0F;
	margin-bottom: 1rem; /* Plus d'espace sous le titre */
	font-weight: 700;
}

.milestone-content p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #202020;
}

/* Tech Section */
.tech-section {
	text-align: center;
}

.tech-section h2 {
	font-size: 2.5rem;
	margin-bottom: 3rem;
	font-weight: 800;
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.tech-card {
	background: white;
	padding: 3rem 2rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(254, 142, 15, 0.2);
}

.tech-card i {
	font-size: 3.5rem;
	color: #FE8E0F;
	margin-bottom: 1.5rem;
}

.tech-card h3 {
	font-size: 1.5rem;
	color: #202020;
	margin-bottom: 1rem;
	font-weight: 700;
}

.tech-card p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #555;
}

/* Future Section */
.future-section {
	background: linear-gradient(135deg, #FE8E0F 0%, #FF6B35 100%);
	color: white;
	text-align: center;
	border-radius: 20px;
	padding: 60px 40px;
	margin: 0 20px;
}

.future-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-15px); }
}

.future-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: white;
	font-weight: 800;
}

.future-section .highlight {
	background: #202020;
	color: white;
	padding: 0.2em 0.4em;
	border-radius: 3px;
	font-weight: 700;
}

.future-section p {
	font-size: 1.3rem;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
}

/* Values Section */
.values-section {
	text-align: center;
	padding: 0 0 0;
}

.values-section h2 {
	font-size: 2.5rem;
	margin-bottom: 4rem;
	font-weight: 800;
}

.values-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	max-width: 700px;
	margin: 0 auto;
}

.value-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: white;
	padding: 2rem 3rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-word {
	font-size: 1.8rem;
	font-weight: 700;
	color: #FE8E0F;
}

.value-separator {
	font-size: 1.3rem;
	font-style: italic;
	color: #999;
}

/* CTA Section */
.cta-section {
	padding: 30px 0 80px;
	margin: 0 20px;
}

.cta-box {
	background: linear-gradient(135deg, #202020 0%, #404040 100%);
	color: white;
	text-align: center;
	padding: 60px 40px;
	border-radius: 20px;
	margin-bottom: 3rem;
}
.cta-box h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: white;
	font-weight: 800;
}

.cta-text {
	font-size: 1.3rem;
	margin-bottom: 3rem;
	color: #E4E2DD;
}

.social-cta-buttons {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.social-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 1.2rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-cta-btn.facebook {
	background: #1877F2;
	color: white;
}

.social-cta-btn.facebook:hover {
	background: #145dbf;
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(24, 119, 242, 0.5);
}

.social-cta-btn.instagram {
	background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
	color: white;
}

.social-cta-btn.instagram:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(253, 29, 29, 0.5);
}

.social-cta-btn i {
	font-size: 1.5rem;
}

/* Business CTA */
.business-cta {
	display: flex;
	gap: 2rem;
	background: white;
	padding: 3rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	align-items: center;
	max-width: 700px;
	margin: 80px auto;
}

.business-icon {
	font-size: 4rem;
	color: #FE8E0F;
	flex-shrink: 0;
}

.business-content h3 {
	font-size: 1.8rem;
	color: #202020;
	margin-bottom: 1rem;
	font-weight: 700;
}

.business-content p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 1.5rem;
}

.business-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #FE8E0F;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	transition: gap 0.3s ease;
}

.business-link:hover {
	gap: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
	.about-main .future-section {
		padding: 40px 25px;
		margin: 0 10px;
	}

	.about-main .future-section p {
		font-size: 1.1rem;
	}
	
	.hero-overlay h1 {
		font-size: 2.5rem;
	}

	.main-title {
		font-size: 1.8rem;
	}

	.story-section {
		padding: 40px 20px;
		margin: 20px 10px;
	}

	.story-text {
		font-size: 1.1rem;
		padding-bottom: 1.5rem;
	}

	.milestone {
		flex-direction: column;
		text-align: center;
		padding: 2rem 1.5rem;
	}

	.milestone-icon {
		margin-top: 0;
	}

	.tech-grid {
		grid-template-columns: 1fr;
	}
	
	.future-section {
		padding: 40px 25px; !important;
		margin: 0 10px; !important;
	}

	.future-section p {
		font-size: 1.1rem; !important;
	}
	
	.value-item {
		flex-direction: column;
		gap: 1rem;
		padding: 1.5rem 2rem;
	}

	.value-word {
		font-size: 1.4rem;
	}

	.social-cta-buttons {
		flex-direction: column;
		align-items: center; /* Ajout du centrage */
		gap: 1rem;
	}

	.social-cta-btn {
		width: 100%;
		max-width: 350px;
		justify-content: center;
	}

	.business-cta {
		flex-direction: column;
		text-align: center;
		padding: 2rem;
	}
}

@media (max-width: 480px) {
	.about-main .future-section {
		padding: 30px 20px;
	}

	.about-main .future-section h2 {
		font-size: 2rem;
	}

	.about-main .future-section p {
		font-size: 1rem;
	}
	
	.future-section {
		padding: 30px 20px; !important;
	}

	.future-section h2 {
		font-size: 2rem; !important;
	}

	.future-section p {
		font-size: 1rem; !important;
	}
}