/* === RESET & BASE === */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Evite la barre de scroll horizontal */ 
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #ffffff;
  color: #0B132B;
}
body > *{
  box-sizing: border-box;
}

/* === HEADER === */
header {
  position: relative;
  background-color: #fff;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .5s ease;
}
header.fixed{
  background-color:  rgba(3,76,56,.9); /* vert sombre semi-transparent */
  backdrop-filter: blur(6px); /* effet flou derrière */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000; /* toujours au-dessus du contenu */
}
header.fixed ~ .block-hero-fullscreen{
  margin-top: 87px;
}
header.fixed .header-logo,header.fixed .header-logo span{
  color: #fff;
}
header.fixed .header-logo svg{
  width: 45px;
  height: 45px;
}
header.fixed .menu-item a {
  color: #fff;
}
header.fixed .menu-item a:hover{
  opacity: .8;
}
header.fixed .menu-toggle span{
  background-color: #fff;
}
.hero-content {
  text-align: center;
  padding: 1rem;
  max-width: 90%;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}

.hero-content p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}

/* Variante couleurs */
.block-hero-fullscreen.no-image .hero-content {
  color: white;
}

.block-hero-fullscreen.has-image .hero-content {
  color: #ffffff; /* ou vert si tu préfères */
}


/* Variante couleurs */
.block-hero-fullscreen.no-image .hero-content {
  color: white;
}

.block-hero-fullscreen.has-image .hero-content {
  color: #ffffff; /* texte blanc pour les images contrastées */
}

/* === BLOCK STANDARD === */
.block-standard {
  width: 100%;
  padding: 4rem 2rem;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

/* === PROGRAM STEPS === */
.program-steps {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.step {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1rem;
  flex: 1;
  min-width: 250px;
  text-align: center;
}

/* === INSIGHT BLOCK === */
.insight-block {
  margin-top: 3rem;
  background-color: #eef6f6;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #b3d1d1;
}

.insight-block h3 {
  margin-bottom: 1rem;
  color: #034c38;
}

.insight-list {
  list-style-type: disc;
  padding-left: 1.5rem;
}

/* === IKIGAE VALUES BLOCK === */
.ikigae-values {
  margin-top: 4rem;
  padding: 2rem;
  background-color: #f5f5f5;
  border-radius: 12px;
}

.ikigae-values h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #034c38;
}

.ikigae-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.ikigae-letter {
  flex: 1;
  min-width: 150px;
  background-color: white;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}

.ikigae-letter h4 {
  font-size: 2rem;
  margin: 0;
  color: #034c38;
}

.ikigae-letter p {
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: #034c38;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}

/* === FOOTER === */
footer {
  background-color: #f1f1f1;
  padding: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

/* === DASHBOARD === */
.dashboard {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 12px;
}

.dashboard h2 {
  color: #034c38;
  margin-bottom: 1.5rem;
}

.dashboard ul {
  list-style-type: none;
  padding: 0;
}

.dashboard li {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* === LOGOUT LINK === */
.logout-link {
  text-align: center;
  margin-top: 2rem;
}

.logout-link a {
  color: #0B132B;
  text-decoration: none;
  font-weight: bold;
}

/* === RECOMMENDATION BLOCK === */
.recommendation-block {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.recommendation-block h3 {
  margin-bottom: 1rem;
  color: #034c38;
}

.rec-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.rec-item {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  border-radius: 8px;
  background-color: #ffffff;
  border: 1px solid #ccc;
}

/* === MEDIA QUERIES === */


/* === HERO COLOR VARIANTS === */
.block-hero-fullscreen.no-image .hero-content {
  color: white;
}

.block-hero-fullscreen.has-image .hero-content {
  color: #004B3D; /* Vert Ikigae */
}
/* === BLOC POURQUOI === */
/* === BLOC POURQUOI === */
.block-pourquoi {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

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

.pourquoi-left,
.pourquoi-right {
  flex: 1;
  max-width: 20%;
}

.pourquoi-left img,
.pourquoi-right img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.pourquoi-center {
  flex: 2;
  max-width: 60%;
}

.pourquoi-center h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #034c38;
}

.pourquoi-content {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #0B132B;
}

/* Responsive */
@media (max-width: 900px) {
  .container-pourquoi {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pourquoi-left,
  .pourquoi-right,
  .pourquoi-center {
    max-width: 100%;
  }

  .pourquoi-left,
  .pourquoi-right {
    display: none; /* facultatif sur mobile */
  }
}

/* === BLOC PROGRAMME === */
.block-programme {
  width: 100%;
  padding: 4rem 2rem;
}

.container-programme {
  max-width: 1140px;
  margin: 0 auto;
}

.container-programme h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.programme-content {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.programme-image {
  margin-bottom: 2rem;
}

.programme-image h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #034c38;
}

.programme-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* === BLOC CONTACT === */
.block-contact {
  width: 100%;
  padding: 4rem 2rem;
}

.block-contact .container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}
.contact-form input:focus,
.contact-form select:focus{
  outline: 0;
  border: 2px solid #034c38;
}
.contact-form button {
  padding: 0.75rem;
  background-color: #034c38;
  color: white;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #004B3D;
}

/* === FORMULAIRE 2 COLONNES === */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grid .full-width {
  grid-column: 1 / 3;
}

.contact-form button {
  margin-top: 1rem;
}

/* === FORMULAIRE CONTACT ALIGNE === */
.form-grid-align {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 1rem 2rem;
  align-items: center;
}

.form-grid-align label {
  text-align: left;
  font-weight: 600;
}
.form-grid-align .full-width {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.form-grid-align .full-width input {
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-bottom: 0;
  opacity: 0;
}

.form-grid-align .full-width label {
  position: relative;
  cursor: pointer;
}

.form-grid-align .full-width label:before {
  content:'';
  border-radius: 4px;
  background-color: transparent;
  border: 2px solid #034c38;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 8px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
}
.form-grid-align .full-width input:checked + label:before{
  background-color: #034c38;
}
.form-grid-align .full-width input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 7px;
  width: 4px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-form button {
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background-color: #034c38;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0B3D3D;
}


body.with-header {
  padding-top: 100px;
}
/*email*/

.button {
  display:inline-block;
  padding:12px 24px;
  background-color:#034c38;
  color:#ffffff !important;
  text-decoration:none;
  border-radius:6px;
  font-weight:bold;
}

/* === BLOC MISSION === */
.block-mission {
  width: 100%;
  padding: 4rem 2rem;
}
.container-mission {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
}
.mission-values {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
}
.mission-values ul {
  list-style: none;
  padding: 0;
}
.mission-values li {
  padding: 0.5rem 0;
}

header nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.menu-item{
  position: relative;
}
/* Lien principal */
.menu-item > a {
  display: block;
  padding: 0.75rem;
  color: #232323;
  text-decoration: none;
}

/* Sous-menu masqué par défaut */
.menu-item .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  min-width: 360px;      /* Largeur doublée */
  min-height: auto;     /* Hauteur minimum */
  padding: 1rem 0;
  border-radius: 6px;
}

/* Liens du sous-menu */
header .menu-item .submenu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #232323;
  text-decoration: none;
}

/* Hover sur sous-menu */
.menu-item .submenu a:hover {
  background-color: #f1f1f1;
  color: #034c38;
}

/* Classe qui rend visible */
.menu-item.open .submenu {
  display: block;
}

.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.main-menu > li {
  position: relative;
}

.main-menu > li > a {
  display: block;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
}

.main-menu li ul.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
}

.main-menu li ul.submenu li a {
  color: #0B132B;
  padding: 0.75rem 1rem;
  display: block;
  text-decoration: none;
}

.main-menu li ul.submenu li a:hover {
  background: #f1f1f1;
}

/* Afficher le sous-menu au survol */
.main-menu li:hover ul.submenu {
  display: block;
}

/* === ILLUSTRATIONS CIRCULAIRES DANS MISSION === */
.illustration-circle {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
  margin: 1rem auto;
}

.illustration-circle.haut {
  margin-bottom: 2rem;
}

.illustration-circle.bas {
  margin-top: 2rem;
}

.illustration-circle.droite {
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}
.block-ai {
  width: 100%;
  padding: 4rem 0;
  display: flex;
  gap:1rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}

.container-ai {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  width: 60%;
}

.ai-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.ai-illustration {
  width: 60px;
  height: auto;
}

.ai-content {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #0B132B;
  padding: 0 1rem;
}

.ai-content h2 {
  font-size: 1.5rem;
  color: #034c38;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.ai-image{
  width: 40%;
}
.ai-image img{
  max-width: 100%;
  width: 100%;
}
.block-cas-clients {
  padding: 4rem 0;
  background-color: #ffffff;
}

.container-cas-clients {
  max-width: 1140px;
  margin: 0 auto;
}

.cas-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.cas-item {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  border: 1px solid #ddd;
  padding: 2rem;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: .125rem .125rem .375rem rgba(0, 0, 0, 0.15);
}

.cas-text {
  flex: 2;
}

.cas-text h3 {
  margin-bottom: 0.5rem;
  color: #034c38;
  font-size: 1.3rem;
}

.cas-text p {
  line-height: 1.6;
  font-size: 1rem;
  color: #0B132B;
}

.cas-image {
  flex: 1;
}

.cas-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* === BLOC LECTURES === */
.block-lectures {
  width: 100%;
  background-color: #f7f9fa;
}

.container-lectures {
  max-width: 1140px;
  margin: 0 auto;
}

.container-lectures h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #034c38;
  text-align: center;
}

/* Grille fluide */
.lecture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.lecture-item {
  text-align: center;
}

.lecture-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0B132B;
  margin-bottom: 1rem;
}

.lecture-image img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* === RESSOURCES COMPLÉMENTAIRES / PODCASTS === */
.block-podcasts {
  padding: 4rem 2rem;
  background-color: #f2f4f7;
}

.container-podcasts {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 2rem;
  column-gap: 2rem;
  align-items: center;
}

.podcast-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.podcast-row.image-left .podcast-img {
  order: 0;
}
.podcast-row.image-left .podcast-text {
  order: 1;
}

.podcast-row.image-right .podcast-img {
  order: 1;
}
.podcast-row.image-right .podcast-text {
  order: 0;
}

.podcast-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.podcast-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
  color: #0B132B;
}

/* Slide additionnelle à droite */
.podcast-extra {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 250px;
  max-width: 30%;
  background-color: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* === Navigation === */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: rgba(255,255,255,0.8);
  color: #034c38;
  padding: 0.3rem 0.8rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  user-select: none;
  transition: background 0.3s ease;
}

.slider-nav:hover {
  background: #e0e0e0;
}

.slider-nav.prev {
  left: 0.5rem;
}

.slider-nav.next {
  right: 0.5rem;
}

.header-logo {
  text-decoration: none;
  color: #034c38;
  display: flex;
  align-items: center;
  gap:.5rem;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 800;
}
.header-logo svg{
  transition: all .5s ease;
}
.header-logo span{
  color: #232323;
}
.main-nav, .auth-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a, .auth-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: opacity 0.3s;
}

.main-nav a:hover, .auth-nav a:hover {
  color: #034c38;
}

.submenu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #0B132B;
  text-decoration: none;
}

.submenu a:hover {
  background: #f0f0f0;
}

.menu-item:hover .submenu {
  display: block;
}

/* Auth-only view */
.auth-only .main-nav {
  display: none;
}
/* === BURGER / TOGGLE BUTTON === */
.menu-toggle {
  display: none; /* CACHÉ PAR DÉFAUT */
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  width: 30px;
  padding: 0;
  opacity: .8;
}
.menu-toggle:hover{
  opacity: 1;
}
.menu-toggle span {
  /* Style the lines of the hamburger icon */
  display: block;
  width: 100%;
  height: 2px;
  background-color: #232323;
  margin-bottom: 5px;
  transition: all .2s ease-in-out;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* section bénéfice */

.container{
  padding:4rem 1rem ;
  max-width: 1140px;
  margin: 0 auto;
}
.block-benefices h2{
  color: #0B132B;
}
.section-title{
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #034c38;
  text-align: center;
}
.benefices-carousel {
	display: flex;
	margin-top: 30px;
	padding: 2rem 0;
	gap: 1rem;
}

.benefices-carousel .card {
	flex: 33.33%;
	height: auto;
	padding: 2rem 1.5rem;
	border-radius: 16px;
  border:1px solid #eee;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefices-carousel .card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefices-carousel .subscription-header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.benefices-carousel .subscription-header i {
	width: 2.5rem;
  height: 2.5rem;
  padding: .5rem;
  color: #034c38;
  background-color: rgba(0, 76, 56, 0.5);
  display: block;
  border-radius: .25rem;
	margin:0 auto 1rem;
	border: none;
	box-shadow: none;
  transition: all .3s ease;
}
.benefices-carousel .card:hover .subscription-header i{
  background-color: #034c38;
  color: white;
}
.benefices-carousel .subscription-header h3 {
	margin: 0;
	font-size: 1.5rem;
	color: #333;
}


.benefices-carousel .features {
	list-style: none;
	padding: 0;
	margin: 1.5rem 0;
	flex-grow: 1;
}

.benefices-carousel .features li {
	margin: 0.75rem 0;
	display: flex;
	align-items: center;
	color: #555;
  text-align: left;
  gap: .5rem;
}

.benefices-carousel .features i {
	min-width: 22px;
	height: 22px;
  color: #034c38;
}

.benefices-carousel .features .disabled {
	text-decoration: line-through;
	opacity: 0.6;
}

/* === DESKTOP === */
@media (min-width: 768px) {
  .main-nav {
    flex-direction: row;
    gap: .5rem;
  }

  .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1001;
    min-width: 180px;
  }

  .menu-item:hover .submenu {
    display: block;
  }
}
@media (min-width: 1124px) {
  .main-nav {
    flex-direction: row;
    gap: 1rem;
  }
  .menu-item > a {
    padding: 0.75rem 1rem;
  }
}
.block-hero-fullscreen {
  position: relative;
  height: calc(100vh - 87px);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: sticky;
  top: 20vh;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.hero-fixed-text {
  background-color: rgba(0, 70, 49, 0.75); /* fond vert Ikigae transparent */
  padding: 2rem 3rem;
  border-radius: 12px;
  max-width: 700px;
  text-align: center;
  animation: fadeout-text 1s ease-out forwards;
  animation-delay: 4s;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.5;
}

@keyframes fadeout-text {
  to {
    opacity: 0;
    transform: translateY(-50%);
  }
}

.hero-description {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.6;
}

.hero-fixed-text .hero-description {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: normal;
}

.hero-sticky-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-sticky-text {
  position: sticky;
  top: 20vh;
  background-color: rgba(0, 70, 49, 0.7);
  color: white;
  padding: 2rem 3rem;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 12px;
  text-align: center;
  font-weight: bold;
  z-index: 2;
}

.hero-sticky-text h1 {
  font-size: 2.2rem;
  margin:0
}
.hero-sticky-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-sticky-container {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-sticky-text {
  background-color: rgba(0, 70, 49, 0.7);
  color: white;
  padding: 2rem 3rem;
  border-radius: 12px;
  max-width: 700px;
  text-align: center;
  font-weight: bold;
}

.hero-description {
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .menu-toggle {
    display: block; /* VISIBLE EN TABLETTE AUSSI CAR LE MENU EST TROP LONG POUR ETRE AFFICHER EN TABLETTE */
  }
  header{
    flex-wrap: wrap;
  }
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-item {
    width: 100%;
  }

  .menu-item .submenu {
    position: relative;
    min-height: auto;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    padding-left: 1rem;
    
  }
  header.fixed .menu-item .submenu a{
    color: #fff;
  }
  .menu-item .submenu a:hover{
    background-color: transparent;
  }
}
/* Responsive */
@media (max-width: 767px) {
  header nav {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  header nav a {
    margin-left: 0;
  }

  header nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .form-grid-align {
    grid-template-columns: 1fr;
  }
  .form-grid-align label {
    margin-bottom: 0.3rem;
  }
  .form-grid-align .full-width {
    grid-column: 1 / 2;
    flex-direction: column;
    align-items: flex-start;
  }
  .block-ai{
    flex-direction: column;
    padding: 0 1rem;
  }
  .container-ai {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .ai-image{
    width: 100%;
  }
  .ai-side {
    flex-direction: row;
    width: 100%;
    gap: 1rem;
  }

  .ai-illustration {
    width: 60px;
  }
  
  .cas-item {
    flex-direction: column;
    text-align: left;
  }
  .cas-image img {
    max-width: 100%;
  }
  .slide {
    grid-template-columns: 1fr;
  }

  .podcast-extra {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 2rem;
  }

  .slider-nav {
    font-size: 1.5rem;
  }

  .podcast-img img {
    width: 90px;
    height: 90px;
  }
  .hero-sticky-wrapper{
    align-items: flex-end;
  }
  .hero-fixed-text {
    font-size: 1.3rem;
    padding: 1.5rem;
    max-width: 90%;
  }
  .hero-sticky-text {
    padding: 1.5rem;
    max-width: 90%;
  }

  .hero-sticky-text h1 {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }
  .container-mission{
    flex-direction: column;
  }
  .benefices-carousel{
    flex-direction: column;
  }
  .benefices-carousel .card {
    flex: 1;
  }
}
