/*@import "css/base.css";
@import "./css/bp-393.css" (max-width: 402px);
@import "css/bp-768.css" (max-width: 768px);
@import "css/bp-1024.css" (min-width: 1024px); */

@import "./css/mobile.css" screen and (max-width: 402px);
@import "./css/bp-1024.css" screen and (min-width: 403px);

/* ============ FONTS LOCALES ============ */
@font-face {
  font-family: "Forrest";
  src: url("./font/forrest-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "American Grotesk";
  src: url("./font/AmericanGrotesk-NormalRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============ BASE STYLES ============ */

* {
	margin: 0;
	padding: 0;
	/*box-sizing: border-box;*/
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'American Grotesk', Roboto, sans-serif;
	line-height: 1.5;
	color: #000;
	overflow-x: hidden;
	background: #FFFFFF;
}

h1 {
	font-family: 'Forrest', sans-serif;
	font-size: clamp(2.5rem, 7vw, 5rem);
	font-weight: 800;
	letter-spacing: -2px;
}

h2 {
	font-family: "Forrest", sans-serif;
	font-weight: 700;
	font-size: 3rem;
}

h3 {
	font-family: "American Grotesk", sans-serif;
	font-weight: 700;
	font-size: 1.3rem;
}

h1, h2, h3, h4, h5, h6 {
	color: #000000;
	line-height: 1.1;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	align-items: center;
	background: transparent;
	padding-top: 1.5rem;
	z-index: 1000;
	transition: all 0.3s ease;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	border-left-width: 1px;
	border-radius: 3em;
	border-color: #e1dfdf67;
	background-color: rgba(255, 255, 255, 0.5);
	box-shadow: 0 8px 32px rgba(71, 85, 105, 0.1);
	color: #000;
}

.logo {
	font-family: 'Forrest', sans-serif;
	font-weight: 700;
    font-size: 2rem;
	color: #000;
    text-decoration: none;
	transition: all 0.3s ease;
	margin: 0 1rem;
}

.logo:hover {
	transform: scale(1.05);
	color: #000;
}

.nav-links {
    font-family: "American Grotesk", sans-serif;
	display: flex;
	list-style: none;
	gap: 3rem;
	color: #000;
	margin: 1.1em 1.3em 0.7em 0em;
}

.nav-links a {
	text-decoration: none;
	color: #000;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding: 0.5rem 0;
}

.nav-links a:hover {
	color: #475569;
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
	width: 100%;
}

.nav-links a.active {
	color: #000;
	font-weight: 600;
}

.mobile-menu {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.mobile-menu span {
	width: 28px;
	height: 3px;
	margin: 4px 0;
	transition: 0.3s;
	border-radius: 2px;
}

/* Hero Section */

.hero {
	min-height: 600px;
	background: #F8F7F3;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(60px, 60px);
	}
}

.hero-content {
	max-width: 900px;
	padding: 0 2rem;
	margin: 8rem 0 auto;
	transform: translateY(50px);
	opacity: 0;
	animation: fadeInUp 1.2s ease forwards;
	z-index: 2;
	position: relative;
}

.hero-img {
	margin: 2rem auto;
}

.hero-img img {
	max-width: 75%;
}

@keyframes fadeInUp {
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.hero p {
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	opacity: 0.95;
	font-weight: 300;
}

/* Add this to your existing CSS */
.hero-content h1,
.hero-content p {
	transition: opacity 0.5s ease-in-out;
}

.cta-button {
	display: inline-block;
	padding: 1.2rem 3rem;
	background: rgba(255, 255, 255, 0.95);
	color: #1e293b;
	text-decoration: none;
	font-weight: 700;
	border-radius: 60px;
	transition: all 0.4s ease;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	background: rgba(255, 255, 255, 1);
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-30px) rotate(180deg);
	}
}

/* Section Styles */
.section {
	padding: 1rem 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.1 !important;
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
	letter-spacing: -1px;
}

.section-title.animate {
	opacity: 1;
	transform: translateY(0);
}

.feature-check {
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #475569, #64748b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.7rem;
	flex-shrink: 0;
}

.tab-icon {
	font-size: 2rem;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

/* Rotation de l'icône (up.png) sur l'onglet actif */
.tab-icon.up img {
	max-width: 100%;
	height: auto;
	transition: transform 0.25s ease;
	transform: rotate(0deg);
	transform-origin: 50% 50%;
}

.tab-icon img {
	width: 32px;
}

.tab-content {
	flex: 1;
	min-width: 0;
}

/* About Us Section - Tab Layout */
.aboutus {
	background: #ffffff;
	position: relative;
}

.aboutus::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.aboutus-container {
	position: relative;
	z-index: 2;
}


.aboutus-layout {
		display: grid;
		grid-template-columns: 1fr 50%;
		gap: 4rem;
		margin-top: 4rem;
		align-items: start;
		background: #F8F7F3;
		border-radius: 25px;
		padding: 2.5rem;
		backdrop-filter: blur(15px);
		min-height: 400px;
		transition: all 0.5s ease;
	}

.aboutus-content {
	padding: 0 2.5rem;
	backdrop-filter: blur(15px);
}

.aboutus-detail {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.5s ease;
	display: none;
}

.aboutus-detail.active {
	opacity: 1;
	transform: translateY(0);
	display: block;
}

.aboutus-detail h3 {
	font-weight: 700;
	margin-bottom: 1rem;
	color: #1e293b;
}

.aboutus-detail .service-subtitle {
	font-size: 1rem;
	color: #475569;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.aboutus-detail p {
	color: #000000;
	line-height: 1.5;
	font-size: 1rem;
	margin-bottom: 1.5rem;
}

.aboutus-tabs {
	display: flex;
	flex-direction: column;
	gap: 0rem;
}

.aboutus-tab {
	padding: 1rem 1rem 1rem 0;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.aboutus-tab.active {
	border-color: rgba(71, 85, 105, 0.4);
}

.aboutus-tab::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	transition: width 0.3s ease;
}

.service-header {
	box-sizing: unset;
	margin: 0 auto;
	padding: 0;
}

.service-header div, .testimonial-header div {
	font-family: 'American Grotesk', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: #000000;
	margin-bottom: 0.5rem;
	padding: 0.5rem 0.8rem;
}	

.title {
	margin: 2rem auto;
	padding: 1rem 2rem;
	width: fit-content;
    text-align: center;
    border: solid 1px;
    border-radius: 2em;
}

.feature-check {
	width: 20px;
	height: 20px;
	background: linear-gradient(135deg, #475569, #64748b);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.7rem;
	flex-shrink: 0;
}

.tab-icon {
	font-size: 2rem;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.tab-content {
	flex: 1;
	min-width: 0;
}

.tab-separator {
	height: 1px;
	background: rgba(71, 85, 105, 0.1);
	margin: 0rem 0;
	border: 1px solid rgba(71, 85, 105, 0.1);
}

.aboutus-image img {
	max-width: 100%;
}

/* Section Funfacts*/

#funfacts.section {
	width: 100%	;
}

.funfact {
	margin: 0 auto;
	max-width: 1024px;
}

.funfact-facts {
	width: 100%;
	display: block;
    margin: 5%;
	overflow: visible;
}

.funfacts-header div {
	font-family: 'American Grotesk', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	padding: 0.5rem 0.8rem;
}	

.funfacts-bloctitle {
	margin: 0 auto;
	width: fit-content;
	text-align: center;
	border-radius: 2em;
}

.funfacts-bloctitle1 {
	border: solid 1px #FFCE43;
	color: #FFCE43;
}

.funfacts-bloctitle2 {
	border: solid 1px #E3E630;
	color: #E3E630;
}

.funfacts-bloctitle3 {
	border: solid 1px #BAADE7;
	color: #BAADE7;
}

.funfacts-bloctitle4 {
	border: solid 1px #78C3E8;
	color: #78C3E8;
}

.funfacts-bloctitle5 {
	border: solid 1px #FB5555;
	color: #FB5555;
}

.funfacts-bloctitle6 {
	border: solid 1px #D7ED9C;
	color: #D7ED9C;
}

.funfacts-bloctitle7 {
	border: solid 1px #FB9A55;
	color: #FB9A55;
}

.funfacts-bloctitle8 {
	border: solid 1px #FF99DD;
	color: #FF99DD;
}

.funfacts-bloctitle9 {
	border: solid 1px #86E573;
	color: #86E573;
}

.funfacts-bloctitle10 {
	border: solid 1px #80AAFF;
	color: #80AAFF;
}

.funfacts-title {
	margin: 0 auto;
    font-family: 'Forrest', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    width: auto;
    line-height: 4rem;
	padding: 0 1rem;
}

.funfacts-subtitle  {
	margin-left: 1rem;
    font-family: 'Forrest', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    width: fit-content;
    line-height: 3rem;
    padding: 0rem;
}

div.section.about {
	padding: 0;
	margin: 0;
}

.about-top {
	min-height: 10rem;
}

.about-image {
	min-height: fit-content ;
	line-height: 0%;
}

.about-image::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	z-index: 1;
}

div.about-top.tag1, div.about-bottom.tag1 {
	background-color: #FFCE43;
	max-height: 12rem;
}

.tag1 {
	background-color: #FFCE43;
}

.tag2 {
	background-color: #E3E630;
}

.tag3 {
	background-color: #BAADE7;
}

.tag4 {
	color: #1e293b;
	background-color: #78C3E8;
}

.tag5 {
	color: #1e293b;
	background-color: #FB5555;
}
.tag6 {
	color: #1e293b;
	background-color: #D7ED9C;
}

.tag7 {
	color: #1e293b;
	background-color: #FB9A55;
}

.tag8 {
	color: #1e293b;
	background-color: #FF99DD;
}

.tag9 {
	color: #1e293b;
	background-color: #86E573;
}

.tag10 {
	color: #1e293b;
	background-color: #80AAFF;
}

.funfact-content, .tag-content {
	width: 50%;
	display: table-cell;
}

.funfact-facts {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1rem;
	transform: translateY(10%);
}

.funfacts-tag {
	border: solid 1px #FFCE43;
    border-radius: 2em;
	background-color: transparent;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1rem;
    text-align: center;
    color: #ffffff;
	cursor: pointer;
	user-select: none;
	pointer-events: auto;
	padding: 0.5rem 1rem;
	margin: 0.4rem 0.3rem;
    width: fit-content;
    float: inline-start;
/*	display: inline-block;
*/
    transition: background-color .3s ease, border-color .3s ease;
	transition:  .3s ease;
}

/* === Funfacts v10 requirements === */

/* Inactive tags: text matches active tag background color */
.funfacts-tag:not(.is-active) {
  color: var(--active-tag-color);
}

/* Active tag: text is black */
.funfacts-tag.is-active {
  color: #000000 !important;
}

.funfact-content h2 {
	font-size: clamp(2.2rem, 4vw, 3.2rem);
	font-weight: 800;
	margin-bottom: 2.5rem;
	color: white;
	letter-spacing: -1px;
	line-height: 1.2;
}

.funfact-content .highlight {
	color: #94a3b8;
	font-weight: 600;
	font-size: 1.3rem;
	margin-bottom: 2rem;
	letter-spacing: 0.5px;
}

.funfact-content p {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 2rem;
	font-size: 1.15rem;
	line-height: 1.8;
}

.funfact-content a {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    transition: all 0.3s ease;
}

.funfact-content a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(135deg, #94a3b8, #cbd5e1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.funfact-content a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.funfact-content a:hover {
    opacity: 0.8;
}

.funfact-features {
	padding: 2rem;
    margin: 5rem auto;
    max-width: 600px;
	list-style: none;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	pointer-events: auto;
	gap: 0rem !important;
	text-align: center !important;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateX(5px);
}

.feature-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #64748b, #94a3b8);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.feature-text {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	font-size: 0.95rem;
}

.stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 0;
}

.stat:first-child {
	grid-column: 1 / -1;
}

.stat {
	text-align: center;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.stat:hover {
	transform: scale(1.05);
	background: rgba(255, 255, 255, 0.15);
}

.stat-number {
	font-size: 3rem;
	font-weight: 900;
	color: #94a3b8;
	display: block;
}

.stat-label {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 0.5rem;
}

.about-visual {
	position: relative;
	display: none;
	flex-direction: column;
}

.about-visual.is-active {
	display: flex;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.visual-shapes {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
}

.visual-shape {
	position: absolute;
	background: rgba(0, 0, 0, 0.9);
	border-radius: 50%;
	animation: floatSlow 15s ease-in-out infinite;
}

.visual-shape:nth-child(1) {
	width: 140px;
	height: 140px;
	top: 20%;
	left: 20%;
	animation-delay: -2s;
}

.visual-shape:nth-child(2) {
	width: 80px;
	height: 80px;
	top: 60%;
	right: 30%;
	animation-delay: -5s;
}

.visual-shape:nth-child(3) {
	width: 160px;
	height: 160px;
	bottom: 25%;
	left: 30%;
	animation-delay: -8s;
}

@keyframes floatSlow {

	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
		opacity: 0.1;
	}

	50% {
		transform: translateY(-20px) rotate(180deg);
		opacity: 0.2;
	}
}

/* Offer Section */

.services-mobile {
		display: none;
}

.offer-grid {
	display: flex;
	justify-content: center;
}

.offer-header {
	background-color: #1F202F;
	padding: 1rem 1rem 0rem 1rem;
	border-top-left-radius: 2rem;
	border-top-right-radius: 2rem;
}

.offer-content {
	border-bottom-left-radius: 2rem;
	border-bottom-right-radius: 2rem;
	color: #1F202F;
}

.offer-content ul {
	margin: 1.2rem;
}

.service-nav h3 {
	color: #ffffff;
}

.offer {
	width: 32%;
	position: relative;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.6s ease;
	text-align: left;
}

.terms {
	background-color: #EEE; 
	font-style: italic; 
	color: #666;
}

.service-sep {
	border-bottom: 1px solid #1F202F;
	padding: 0.5rem 0rem !important;
	}

.mc01 {
	background-color: #FFCE43;
}

.mc02 {
	background-color: #BAADE7;
}

.mc03 {
	background-color: #E3E630;
}

.service-nav {
	margin-top: 1rem;
}

.service-button {
	font-size: 1.5rem;
	font-weight: 800;
	color: #1e293b;
	margin-right: 1rem;
}

.service-number {
	color: #fff;
	border-color: #fff;
	border-radius: 3rem;
	border-style: solid;
}

.service-all {	
	max-height: 9999px !important;
	opacity: 1 !important;
	overflow: visible;
	transition: none;
}

.offer-card {
	text-align: left;
	position: relative;
	overflow: hidden;
	backdrop-filter: blur(10px);
	transition: all 0.5s ease;
	border-radius: 2rem;
	font-family: 'American Grotesk', sans-serif;
	padding: 1rem;
}

.offer-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	transition: left 0.5s ease;
}

.offer-info h3 {
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: #1e293b;
	position: relative;
	z-index: 2;
}

/*fun facts Section - Animated Counters */

	.funfacts-section {
		background: #1e293b;
		position: relative;
		overflow: hidden;
		width: 100%;
		padding: 0;
	}

	.funfacts-section > .section.about {
		max-width: 100%;
		padding: 4rem 5%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		align-items: center;
		position: relative;
		z-index: 2;
	}

	.funfacts-section, .about-content, .tag-content {
		position: relative;
	}

/* Testimonials Section - Overlapping Layout */
.testimonials {
	background: #ffffff;
	position: relative;
	overflow: hidden;
}


.testimonials-container {
	position: relative;
	display: grid;
	gap: 1rem;
	margin-left: auto;
	margin-right: auto;
}

.testimonial {
	position: relative;
	opacity: 0;
	transform: translateY(10px);
	transition: all 0.2s ease;
	max-width: 50%;
	float: left;
}

a.testimonial-button {
	text-align: right;
	text-decoration: none;
	font-style: italic;
	font-weight: 400;
	font-size: 1.1rem;
	font-family: "American Grotesk", sans-serif;
	padding-top: 1rem;
}
a.t1 {
	color: #BAADE7;
}
a.t2 {
	color: #FB9A55;
}
a.t3 {
	color: #78C3E8;
}
a.t4 {
	color: #FB5555;
}

.testimonial.animate {
	opacity: 1;
	transform: translateY(0);
}

.testimonial-content {
	background: transparent;
	border-radius: 20px;
	position: relative;
	border: 1px solid #D9D9D9;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-text {
	color: #1e293b;
	font-style: italic;
	margin-top: 1.5rem;
	font-size: 1rem;
	line-height: 1.6;
	position: relative;
	z-index: 2;
	flex-grow: 1;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	position: relative;
	z-index: 2;
	margin-top: auto;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #D9D9D9;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1rem;
	flex-shrink: 0;
}

.author-info h4 {
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 0.2rem;
	font-size: 0.95rem;
}

.author-info span {
	color: #475569;
	font-size: 0.85rem;
}

/* Contact Section - Futuristic Form */
	section.contact-section {
		position: relative;
		overflow: hidden;
		background-size: 100% auto;
		background-repeat: no-repeat;
		background-position: center;
	}

	a.clean {
		text-decoration: none;
		color: inherit;
	}

	.contact-bg {
		margin-top: 5rem;
	}

	.contact-content, .contact-button {
		width: 50%;
		min-width: 300px;
		margin: 0 auto;
		position: relative;
		z-index: 2;
		margin-top: clamp(1rem, 2.5vw, 4rem);
	}

	.one-contact-button {
		display: none;
	}


	.one-contact-button {
		width: fit-content;
		margin: 0 auto;
		position: relative;
		z-index: 2;
		margin-top: clamp(1rem, 2.5vw, 4rem);
	}


	.contact p {
		font-size: 1.3rem;
		margin-bottom: 3rem;
		opacity: 0.95;
		text-align: center;
	}

  div.button-left, div.button-right, div.button {
    display: inline-block;
	justify-content: center;
	margin: 0 auto;
	width: 40%;
	border: #000000 1px solid;
	text-align: center;
  }

	div.button {
		margin: 0 auto;
		width: 100%;
	}

  .submit-btn, .submit-btn2 {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    justify-self: center;
    position: relative;
    overflow: hidden;
  }

  .submit-btn {
    background: #000000;
    color: white;
  }

  .submit-btn2 {
    background: transparent;
    color: #000000;
  }

  .submit-btn::before,.submit-btn2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 50%;
    transition: left 0.2s ease;
  }

  submit-btn:hover::before, .submit-btn2:hover::before {
    left: 100%;
  }

  .submit-btn:hover, .submit-btn2:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 20px rgba(100, 116, 139, 0.2);
  }

/* Scroll Animations */
.fade-in {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease;
}

.fade-in.animate {
	opacity: 1;
	transform: translateY(0);
}

/* Loading Animation */
@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.7;
	}
}

.loading {
	animation: pulse 2s ease-in-out infinite;
}

/* Footer */
.footer {
	background: #0f172a;
	color: white;
	padding: 3rem 5% 2rem;
	border-top: 1px solid rgba(71, 85, 105, 0.2);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.footer-links {
	display: flex;
	gap: 2rem;
	list-style: none;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-weight: 400;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #64748b;
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

.footer-design {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
}

.footer-design a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-design a:hover {
	color: #64748b;
}


/* Legal Notice */

.legalnotice-content {
	background: #f1f5f9;
	color: #475569;
	padding: 3rem 5%;
	font-size: 0.85rem;
	text-align: justify;

}

/* Specific styles for lentre page */

/* Legal Notice Styles */

.legalnotice {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
}

/* === Carousel dots - hidden by default, shown in mobile breakpoint === */
.carousel-dots {
  display: none;
}

.legalnotice.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.legalnotice-content {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  max-width: 800px;
  margin: 20px;
  position: relative;
}

/* === Funfacts tags interaction === */
.funfacts-bloctitle {
  display: none;
}
.funfacts-bloctitle.is-active {
  display: block;
}

/* Hide all visuals by default; JS shows the active one */
.tag-content .about-visual {
  display: none;
}
.tag-content .about-visual.is-active {
  display: flex;
}


/* =========================================================
   TYPO PER SECTION (classes dédiées)
   Objectif: ajuster facilement les tailles par section
   ========================================================= */

/* HERO */
.typo-hero-kicker{
  font-size: clamp(14px, 2.2vw, 18px);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.typo-hero-title{
  font-size: clamp(34px, 8.5vw, 72px);
  line-height: 1.05;
}

.typo-aboutus-tab{
  font-size: clamp(16px, 2.6vw, 22px);
  line-height: 1.2;
}
.typo-aboutus-body{
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.55;
}

/* 	FUNFACTS */
.typo-about-bloctitle{
  font-size: clamp(18px, 3.2vw, 28px);
  line-height: 1.1;
}
.typo-about-title{
  /*font-size: clamp(18px, 3.0vw, 26px);*/
  line-height: 1.2;
}
.typo-about-subtitle{
  /*font-size: clamp(14px, 2.2vw, 18px);*/
  line-height: 1.4;
}

/* =========================================================
   END OF LENTRE.CSS
   ========================================================= */