@import url("https://fonts.googleapis.com/css2?family=Anton&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
h1 {
	font-family: "Anton", sans-serif;
	font-size: 5vw;
	font-weight: 200;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: -2px;
	padding-top: 0.25rem;
}
h2 {
	font-family: "Poppins", sans-serif;
	font-size: 2.5rem;
	font-weight: 700; 
    margin-bottom: 2.5rem;

}
p {
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	font-weight: 500;
}
img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100svh;
	overflow: hidden;
}
.progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 8px;
	transform: scaleX(0%);
	transform-origin: center left;
	background-color: #fff;
	will-change: transform;
	z-index: 2;
}
.progress-counter {
	position: fixed;
	bottom: 1rem;
	right: 2.5rem;
	color: #fff;
	z-index: 2;
	text-shadow: 5px 5px 15px rgb(0 0 0 / 15%);
}
.scroller {
	position: relative;
	width: calc(100vw * 11); 
	height: 100svh;
	display: flex;
	will-change: transform;
	transform: translateX(0);
}
section {
	position: relative;
	height: 100svh;
	width: 100vw;   /* ✅ Make sure each section takes exactly one screen width */
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.intro,
.hero-img,
.about,
.banner-img,
.story,
.outro {
	width: 90vw;
}
.header,
.concept-img {
	width: 100vw;
	
}
.intro {
	padding: 2rem;
	background-color: #ffffff;
	color: #164C86;
}
.header {
	padding: 2rem;
	background-color: #ffffff;
	color: #164C86;
}
.about {
	padding: 4rem 3rem 1rem 2rem;
	background-color: #ffffff;
	color: #164C86;
}
.story {
	padding: 4rem 2rem 2rem 2rem;
	background-color: #ffffff;
	color: #164C86;
}
.outro {
	background-color: #ebebd3;
	color: #164C86;
	padding: 2rem;
}
.about,
.intro,
.header,
.story {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.intro,
.about,
.story {
	flex-direction: column;
}
.header h1 {
	font-size: 10vw;
}
.story h1 {
	padding-top: 0;
}
.about .row {
	display: flex;
	justify-content: space-between;
}
.about .row p {
	width: 50%;
	margin-bottom: 1rem;
}
.about .row .copy {
	flex: 3;
}
.about .row .img {
	flex: 3;
	aspect-ratio: 7/5;
}
.logo {
	max-width: 600px;
	width: 100%;
	height: auto;
	margin: 1.5rem auto;
	display: block;
  }
  .section-title {
	font-family: 'Poppins', sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	color: #004b87;
	line-height: 1.4;
	margin-bottom: 2rem; /* Ajoute un espace vertical */
  }
  
  .subtitle {
	display: block;
	font-size: 1.1rem;
	font-weight: 400;
	color: #444;
	margin-top: 0.3rem;
  }
  .section-wrapper {
	display: flex;
	flex-direction: column;
  }
  .section-wrapper h2 + h2 {
	margin-top: 30rem;
  }
  
  .section-image {
	margin-top: -4rem;
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  .image-row {
	display: flex;
	gap: 15rem; /* Espace entre les deux images */
	justify-content: center; /* Centrer les images horizontalement */
	flex-wrap: wrap; /* Permet de passer en colonne sur petit écran */
	margin: 1rem 0;
  }
  
  .image-row .section-image {
	width: 48%; /* Pour que deux images tiennent côte à côte */
	height: auto;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
/* ✅ Colonne verticale pour les images */
.image-column {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem; /* espace entre les images */
	margin-top: 2rem;
  }
  
  /* ✅ Style du bouton */
  .btn-questionnaire {
	display: inline-block;
	margin-top: 1rem;
	padding: 0.75rem 1.5rem;
	background-color: #164C86;
	color: white;
	font-family: "Poppins", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: background-color 0.3s ease;
  }
  
  .btn-questionnaire:hover {
	background-color: #0d355e;
  }
  .highlight-title {
	color: #f7b624;
}

  @keyframes loading {
	0% {
	  cy: 10;
	}
	25% {
	  cy: 3;
	}
	50% {
	  cy: 10;
	}
  }
  body {
	-webkit-font-smoothing: antialiased;
	background-color: #f4f7ff;
  }
  
  canvas {
	height: 100vh;
	pointer-events: none;
	position: fixed;
	width: 100%;
	z-index: 2;
  }
  
  button {
	background: none;
	border: none;
	color: #f4f7ff;
	cursor: pointer;
	font-family: 'Roboto', Arial;
	font-size: 14px;
	font-weight: 500;
	height: 40px;
	left: 50%;
	outline: none;
	overflow: hidden;
	padding: 0 10px;
	position: fixed;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 190px;
	z-index: 1;
  }
  button::before {
	background: #1f2335;
	border-radius: 50px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4) inset;
	content: '';
	display: block;
	height: 100%;
	margin: 0 auto;
	position: relative;
	transition: width 0.2s cubic-bezier(0.39, 1.86, 0.64, 1) 0.3s;
	width: 100%;
  }
  
  button.ready .submitMessage svg {
	opacity: 1;
	top: 1px;
	transition: top .4s ease 600ms, opacity .3s linear 600ms;
  }
  button.ready .submitMessage .button-text span {
	top: 0;
	opacity: 1;
	transition: all 0.2s ease calc(var(--dr) + 600ms);
  }
  
  button.loading::before {
	transition: width .3s ease;
	width: 80%;
  }
  button.loading .loadingMessage {
	opacity: 1;
  }
  button.loading .loadingCircle {
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-name: loading;
	cy: 10;
  }
  
  button.complete .submitMessage svg {
	top: -30px;
	transition: none;
  }
  button.complete .submitMessage .button-text span {
	top: -8px;
	transition: none;
  }
  button.complete .loadingMessage {
	top: 80px;
  }
  button.complete .successMessage .button-text span {
	left: 0;
	opacity: 1;
	transition: all 0.2s ease calc(var(--d) + 1000ms);
  }
  button.complete .successMessage svg {
	stroke-dashoffset: 0;
	transition: stroke-dashoffset .3s ease-in-out 1.4s;
  }
  
  .button-text span {
	opacity: 0;
	position: relative;
  }
  
  .message {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
  }
  
  .message svg {
	display: inline-block;
	fill: none;
	margin-right: 5px;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
  }
  
  .submitMessage .button-text span {
	top: 8px;
	transition: all 0.2s ease var(--d);
  }
  .submitMessage svg {
	color: #5c86ff;
	margin-left: -1px;
	opacity: 0;
	position: relative;
	top: 30px;
	transition: top .4s ease, opacity .3s linear;
	width: 14px;
  }
  
  .loadingMessage {
	opacity: 0;
	transition: opacity 0.3s linear 0.3s, top 0.4s cubic-bezier(0.22, 0, 0.41, -0.57);
  }
  .loadingMessage svg {
	fill: #5c86ff;
	margin: 0;
	width: 22px;
  }
  
  .successMessage .button-text span {
	left: 5px;
	transition: all 0.2s ease var(--dr);
  }
  .successMessage svg {
	color: #5cffa1;
	stroke-dasharray: 20;
	stroke-dashoffset: 20;
	transition: stroke-dashoffset .3s ease-in-out;
	width: 14px;
  }
  
  .loadingCircle:nth-child(2) {
	animation-delay: 0.1s;
  }
  
  .loadingCircle:nth-child(3) {
	animation-delay: 0.2s;
  }
  .btn-srm {
	background-color: #007ac2;
	color: white;
	padding: 14px 28px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	display: inline-block;
	margin-top: 20px;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 122, 194, 0.2);
	font-family: "Montserrat", sans-serif;
  }
  
  .btn-srm:hover {
	background-color: #005e94;
	box-shadow: 0 10px 25px rgba(0, 94, 148, 0.4);
	letter-spacing: 0.5px;
  }
  