html,body{
  height: 100%;  /* Permet d'utiliser toute la hauteur de la fenêtre */
  margin: 0;
  padding: 0;
}

body{
  font-family: "League Spartan", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin:0;
  padding:0;
  top:0;
  scroll-behavior: smooth;
  background-color:  #221F1F;
  overflow-x: hidden;
}

.site-branding {
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #ffffff50; /* blanc semi-transparent */
  backdrop-filter: blur(6px); /* effet de flou */
  -webkit-backdrop-filter: blur(6px); /* compatibilité Safari */
  z-index: 998;
}



.logobrand{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
}

.logobrand img{
  width: 80px;
  height: auto;
  opacity: 1;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 20px;
}

.title, .title>a, .title>a:hover{
  color: #E20119;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  opacity: 1;
  margin:0;
  padding:0;
  text-decoration: none;
}

/* MENU */

#site-navigation{
  display: none;
}

.menu{
  display: block;
  background-color: rgba(255, 255, 255, 0.95);
  width: 50%;
  position: fixed;
  top: 0;
  right: 0%;
  height: 100%;
  /*this will hide the menu off the screen*/
  transform: translateX(100%);
  z-index: 998;
  transition: transform 0.5s ease;
}

.open{
  transform: translateX(0);
}

.nav{
  position: absolute;
  right: 25%;
  top: 25%;
  /* we use a transform to move the nav up by 50% of its height, which always stays relative to the size of our box*/
  transform: translateY(50%);
  transform: translateX(50%);
  margin: 0;
  padding:0;
}
/* === BOUTON MENU BURGER EN CROIX PARFAITE AVEC 2 BARRES === */

.menu-toggle {
  position: fixed;
  top: 50px;
  right: 30px;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
  gap: 10px; /* Espace entre les barres */
  padding: 0;
}

.menu-toggle .bar {
  width: 100%;
  height: 4px;
  background-color: #E20119;
  border-radius: 0px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* Animation CROIX quand le menu est ouvert */
.menu-toggle.open .bar1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar2 {
  transform: rotate(-45deg) translate(5px, -5px);
}




ul#primary-menu{
  text-align: center;
  width: auto;
  background-color: transparent;
  top: 0%;
  right:0;
  margin:0;
}

ul#primary-menu>li{
  list-style: none;
  margin-bottom: 10px;
  width: 390px;
}

ul#primary-menu>li>a{
  font-family: "League Spartan", sans-serif;
  list-style: none;
  color: black;
  font-size: 52px;
  font-style: none;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}     

#primary-menu li a {
  position: relative;
  display: inline-block;
  color: black;
  padding: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

#primary-menu li a:hover {
  color: #E20119;
}

/* Soulignement animé */
#primary-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: 0;
  width: 0%;
  height: 2px;
  background-color:#E20119;
  transition: width 0.3s ease;
}

#primary-menu li a:hover::after {
  width: 100%;
}
@keyframes fadeInUp {
  from {
	opacity: 0;
	transform: translateY(20px); /* commence 20px plus bas */
  }
  to {
	opacity: 1;
	transform: translateY(0); /* finit à sa position normale */
  }
}

#primary-menu li {
  opacity: 0;
  transform: translateY(20px); /* position initiale */
}

#primary-menu li.animate {
  animation: fadeInUp 0.3s ease forwards;
}

.RSMenu{
  display: block;
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  margin:0;
  padding:0;
  
}
/* ACCUEIL */

/* SLIDERS */

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100vh;
}

.sliders {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
}

.sliders.active {
  opacity: 1;
  pointer-events: auto;
}

.slidersImages {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.slidersImages img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boxSlider {
  position: absolute;
  z-index: 2;
  margin-left: 90px;
  max-width: 570px;
  background: linear-gradient(rgba(251, 251, 251, 0.60), rgba(28, 27, 27, 0.80));
  padding: 30px 15px 20px 15px;
  bottom: 6%;
  color: white;
}

.slidersTitre p{
  color: #E20119;
  text-transform: uppercase;
  font-size: 62px;
  line-height: 1em;
  font-weight: 700;
  text-align: center;
  padding-bottom: 0px;
  margin-top:20px;
  
}

.slidersTexte>p {
  font-size: 28px;
  font-weight: 500;
  margin-left: 80px;
  margin-right: 80px;
  padding-top: 0px;
  margin-top:0;
}

.slidersTexte span {
  color: white !important;
}

/* Dots (ronds blancs) */
.dotsContainer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.dot {
  display: inline-block;
  height: 14px;
  width: 14px;
  margin: 0 8px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #E20119;
}


.entry-content {
  margin: 0;
  padding: 0;
}
.titres{
  color:  #E20119;
  font-size: 58px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  margin: 70px 0 100px 0;
}


.chiffres{
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content:center;
  align-items:center;
  margin-top: 50px;
  margin-left: 80px;
  margin-right: 80px;
  margin-bottom: 0;
}

.video{
  
  width: 800px;
  height: auto;
}

.video>p>iframe{
  width: 740px!important;
  height:460px !important;
  margin:0;
  padding:0;
  
}

.stats{
  display: flex;
  flex-direction: row;
  width: 500px;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin:0;
  top:0;
}

.chiffresstats{
  color:  #E20119;
  font-size: 38px;
  font-weight: 600;
  line-height: 0.8em;
}

.legendes{
  color:  #E20119;
  font-size: 22px;
  width: 200px;
  text-align: center;
  margin-bottom: 30px;
}

.events{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 20px;
  width: 100%;
  height: auto;
  align-items:center;
  justify-content: center;
}

.event{
  position: relative;
  background-color: #3A3838;
  width: 400px;
  height: 680px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 20px;
  margin: 10px 10px 10px 10px;
}

.date{
  color: white;
  font-weight: 600;
  text-align: right;
  margin-bottom: 20px;
  font-size: 18px;
}

.eventimg>img{
  max-width: 350px;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.eventtitre{
  font-size: 28px;
  color:  #E20119;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
  margin-top: 20px;
  line-height: 1em;
  height: 80px;
}

.eventtexte {
  width: 380px;
  max-height: 600px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: white;
  font-size: 18px;
  padding: 20px 20px 0 40px; /* on garde padding gauche 10px */
  position: relative; /* nécessaire pour positionner le ::before */
  box-sizing: border-box;
}

/* Bordure verticale juste au niveau du texte */
.eventtexte::before {
  content: "";
  position: absolute;
  left: 10px; /* correspond au padding-left de .eventtexte */
  top: 35px;  /* correspond au padding-top */
  bottom: 20px;
  width: 3px;
  background-color: #E20119;
}

.eventbutton{
  background-color:#E20119;
  width: 200px;
  margin: 10px;
  padding: 10px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
}

.eventbutton>a{
  color: white;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* PRESENTATION */
.imageSDIS, .imageRejoinNous, .imageJSP, .imagesuisnous{
  z-index: -1;
  position: relative;
  width:100%;
  max-width: 150%;
  max-height: 100vh;
  top:0;
  overflow:hidden
}

.imageSDIS img, .imageRejoinNous img, .imageJSP img, .imagesuisnous img{
  top: 0;
  height: auto;
  width: 100%;
}

.titrespage{
  color:  #E20119;
  font-size: 98px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  margin: 10px 0 100px 0;
  z-index: 1;
  position: absolute;
  top: 80%;
  left: 8%;
}

.introtxt{
  color: white;
  font-size: 32px;
  font-weight: 600;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 50px;
}
/* ORGANES INTERVENTION */
.OrganesIntervention{
  background-color: #3A3838;
  margin: 0;
  padding: 0;
  height: auto;
}

.titresSDIS{
  color:  #E20119;
  font-size: 58px;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  padding: 70px 0 80px 0;
}

.casernes-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  justify-content: center;
  padding-bottom: 70px;
  margin-top: -40px;
}

.caserne-item {
  position: relative;
  width: 600px; /* largeur fixe, ou utilise `flex: 1 1 300px;` pour responsive */
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.imgcaserne img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
  
}

.imgcaserne::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(7, 7, 7, 0.355); /* ajustez l'opacité ici */
  z-index: 1;
  pointer-events: none; /* important pour ne pas bloquer les clics */
}

.textcaserne {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  color: white;
  text-align: center;
  font-weight: 600;
  z-index: 2;
}




.villes{
  color: white ;
  font-size: 42px ;
  font-weight: 600 ;
  text-transform: uppercase ;
  margin-left: 0px;
  
}

.adresse{
  color: white;
  font-size: 32px;
  width: auto;
}

/* ETAT MAJOR */
.etatMajor{
  margin: 0;
  padding: 0;
  background-color: #C5C4C4;
}

.organigramme-grid {
  display: grid;
  grid-template-columns: repeat(4, max-content); /* 4 colonnes */
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}
.organigramme-grid .personne:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}

.organigramme-grid .personne:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.organigramme-grid .personne:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.organigramme-grid .personne:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.organigramme-grid .personne:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.organigramme-grid .personne:nth-child(6) {
  grid-column: 4;
  grid-row: 2;
}

.personne {
  text-align: center;
  width: 300px;
}

.EMimg img {
  width: 450px;
  height: auto;
  
}

.nomEM{
  font-size: 26px;
  font-weight: 600;
  font-weight: bold;
  margin-top: 10px;
  white-space: nowrap;
}

.EMtitre{
  font-size: 21px;
}

/* REJOINS NOUS */

.inscription {
  background-color: #3A3838;
  padding: 5px;
  width: 1000px;
  margin: 0 auto 50px;
}

.inscription-text {
  position: relative;
  margin: 50px 5% 0 10%;
  padding-left: 40px;
}

.inscription-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #E20119;
}

.inscription-text p {
  color: white;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5em;
  margin: 0 0 25px 0;
}
.inscriptionbutton{
  background-color:#E20119;
  width: 200px;
  margin: 10px;
  padding: 10px;
  position: relative;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
}

.inscriptionbutton>a{
  color: white;
  font-size: 18px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


/* TEMOIGNAGES */
.temoignages {
  position: relative;
  background-color: #C5C4C4;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 50px; /* Espace pour les dots */
  box-sizing: border-box;
}

.temoignages-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 20px;
  box-sizing: border-box;
}

.temoignage_personne {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  background: #C5C4C4;
  padding: 20px;
  margin: 0 10px;
  box-sizing: border-box;
}


.temoinageimg {
  position: relative;
  width: 350px; /* largeur fixe, ou utilise `flex: 1 1 300px;` pour responsive */
  height: 410px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}


.temoinageimg img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  
}

.textTemoignage {
  font-size: 18px;
  color: black;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 5px;
  margin-left: 55px;
  margin-right: 55px;
  flex-grow: 0;
  font-style: italic!important;
  border-left: 4px solid #E20119; /* Trait vertical rouge épais */
  padding-left: 20px; /* Espace entre le trait et le texte */
}

.textTemoignage p{
  margin:0;
  padding:0;
}

.NomTemoin {
  color: black;
  font-size: 17px;
  text-align: right;
  margin-top: 0px;
}
.NomTemoin::before,
.NomTemoin::after {
  content: "–";
  margin: 0 8px;
  color: black;
  font-weight: bold;
}
/* Dots à l'intérieur de la section */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.carousel-dots button {
  border: none;
  background-color: white;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.3s;
  padding: 0;
  line-height: 0;
  display: inline-block;
}

.carousel-dots button.active {
  background-color:#E20119;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .slide {
	flex-direction: column;
	align-items: center;
  }
  
  .temoignage_personne {
	flex: 0 0 90%;
	margin: 10px 0;
  }
  
  .carousel-dots {
	bottom: 10px;
  }
}
/* Formation */
/* ----------- Conteneur principal vertical ----------- */
.formations-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1f1b1b;
  padding: 0;
  position: relative;
  min-height: 100vh;
  
}


/* ----------- Ligne des flèches ----------- */
.formations {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
}

/* ----------- Bloc flèche général ----------- */
.form {
  width: 240px;
  height: 120px;
  padding: 20px;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
  margin-right: -20px; /* Pour l'effet emboîté */
  z-index: 1;
}

/* ----------- Flèche 1 : bord gauche droit, flèche à droite ----------- */
.step1 {
  background-color: white;
  clip-path: polygon(
	  0 0,
	  90% 0,
	  100% 50%,
	  90% 100%,
	  0 100%,
	  0 0
	  );
}
.step1::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 30px solid white;
  z-index: 1;
}

/* ----------- Flèche 2 : pointe des deux côtés ----------- */
.step2 {
  background-color: #ff0000;
  color: white;
  clip-path: polygon(
	  0 0,
	  90% 0,
	  100% 50%,
	  90% 100%,
	  0 100%,
	  10% 50%
	  );
}
.step2::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 30px solid #ff0000;
  z-index: 1;
}

/* ----------- Flèche 3 : emboîtement à gauche, bord droit ----------- */
.step3 {
  background-color: #a00014;
  color: white;
  clip-path: polygon(
	  0 0,
	  90% 0,
	  100% 50%,
	  90% 100%,
	  0 100%,
	  10% 50%
	  );
  margin-right: 0;
}
.step3::after {
  display: none; /* Pas de flèche à droite */
}

/* ----------- Sous-éléments internes ----------- */
.acronymeFormation {
  font-size: 26px;
  margin-bottom: 5px;
}
.nomFormation {
  font-weight: normal;
  font-size: 18px;
}

.instruction{
  color: white;
  padding-top: 5px;
}

/* ----------- Overlay sous les flèches ----------- */
/* Overlay container */


#overlay-container {
  position: static; /* ou simplement enlever position:absolute */
  margin-top: 20px; /* espace entre les flèches et l'overlay */
  width: 100%;
  max-width: 700px;
  height: 300px;
  background-color: #C5C4C4;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
  box-sizing: border-box;
  color: black;
  z-index: 10;
  cursor: pointer;
  margin-bottom:70px;
}


/* Classe pour cacher l’overlay */
.hidden {
  display: none !important;
}



/* Contenu texte à gauche */
#overlay-container .left-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center; /* centre verticalement */
  align-items: center; /* centre horizontalement */
  height: 100%; /* prend toute la hauteur de l’overlay */
  gap: 15px; /* espace entre top-row et présentation */
  box-sizing: border-box;
  padding: 10px;
}
#overlay-container .left-overlay .top-row {
  display: flex;
  gap: 8px;
  justify-content: center; /* centre horizontalement */
  align-items: center; /* centre verticalement */
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
  color: black;
}

/* Titre year */
#overlay-container .yearFormation, #overlay-container .acronymeFormation {
  font-weight: bold;
  font-size: 24px;
  color: black;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center!important;
  
  
}

/* Texte présentation */
#overlay-container .presentationFormation {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: black;
  text-align: left;
  max-width: 320px; /* limite largeur pour que ce soit propre */
   border-left: 4px solid #E20119; /* Trait vertical rouge épais */
  padding-left: 20px; /* Espace entre le trait et le texte */

 }

/* Image à droite */
#overlay-container .formationimg {
  position: relative;   /* changer pour positionner image absolue */
  width: 300px;
  height: 250px;
  overflow: hidden;
  flex-shrink: 0;
  max-width: 300px;
  max-height: 250px;
}
#overlay-container .formationimg img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  max-width: none;
  max-height: none;
  
}
#overlay-container .left-overlay .top-row {
  display: flex;
  justify-content: center; /* centre horizontalement */
  align-items: center;     /* aligne verticalement au centre */
  gap: 12px;               /* espace entre acronyme et année */
  margin-bottom: 15px;
}        /* pour que le centrage vertical fonctionne */



/* JSP */

.FormationJSP{
  background-color: #3A3838;
  margin:0;
  padding:0;
  height: auto;
  padding-bottom: 50px;
}
.textFormationJsp{
  color: white; 
  font-size: 32px;
  font-weight: 600;
  margin: -50px 250px 30px 250px;
}
.flammes{
  width: 900px;
  padding: 20px;
  background-color: #C5C4C4;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}
.flammesIndiv{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content : center;
  padding-bottom : 0;
  padding-left: 0px;
  padding-top: 20px;
  padding-right: 0px;
  
}
.flammesIndiv img{
  width: 80px;
  min-width:80px;
  display: block;
  
  
}
.textflamme{
  color: black;
  font-weight: 500;
  font-size: 18px;
  margin-left: 80px;
  margin-right: 80px;
  text-align: center;
  padding:0;
  margin-top: 0;
  margin-bottom: 0;
  border-left: 3px solid #E20119; /* Trait vertical rouge épais */
  border-right: 3px solid #E20119;
  padding-left: 25px;
  padding-right: 25px;
}

.imagesuisnous {
  position: relative;
  display: inline-block;
  margin-bottom: 70px;
  margin-top: 0;
}

.imagesuisnous img {
  display: block;
  width: 100%;
  height: auto;
}

.titrespageJSP {
  position: absolute;
  bottom: 70px;
  left: 7%;
  color:  #E20119;
  margin-right: 500px;
  font-size: 98px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1em;
    text-shadow: 1px 1px black;

}


.textRejoindreJsp, .textSuisNous{
  color: white; 
  font-size: 28px;
  font-weight: 600;
  margin-left: 250px;
  margin-right: 150px;
  margin-top: 0px;
}

.textSuisNous{
  margin-top: -90px;
  text-align: center;
  margin-right: 0px;
  margin-left: 0px;
  margin-bottom: 80px;
  
}

.textRejoindreJsp a, .textSuisNous a, .introtxt a{
  
  text-decoration: none;
  color: #E20119;
}
.textRejoindreJsp a:hover, .textSuisNous a:hover, .introtxt a:hover{
  
  text-decoration: none;
  color: white;
}

.adresse a{
  
  text-decoration: none;
  color: white;
}
.adresse a:hover{
  
  text-decoration: none;
  color: #E20119;
}


/* FOOTER */



#content {
  flex-grow: 1; /* Prend tout l'espace restant pour pousser le footer vers le bas */
}

.site-info {
  z-index: 990;
  background-color: #222; /* Ou la couleur de ton footer */
  padding: 30px;
  margin-top: auto; /* Pousse le footer en bas */
  padding-right: 50px;
  padding-left: 50px;
}

.footerflex {
  display: grid;
  grid-template-columns: auto auto auto;
  border: 2px solid #E20119;
  color: white;
}

.footerflex > section {
  border-right: 2px solid #E20119;
}

.footerflex > .droite {
  border-right: none;
}

.gauche, .center, .droite {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  padding: 25px 0;
  font-size: 18px;
}

.gauche {
  margin-left: 0;
}

.phone {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.phone img {
  width: 50px;
  margin-right: 20px;
}

.number p {
  margin: 0;
  padding: 0;
}

h4 {
  font-size: 32px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
}

.center > p, 
.center > a {
  padding: 0;
  margin: 0;
}

.center > a {
  text-decoration: none;
  color: white;
}

.center > a:hover {
  color: #E20119;
}

.site-info {
  position: relative;
}
.siteInfo {
  position: absolute;
  right: 20px;
  bottom: 55px;
  writing-mode: vertical-rl;   /* Texte vertical de bas en haut */
  transform: rotate(180deg);   /* Pour que le texte soit lisible normalement */
  font-size: 13px;
  
}

.siteInfo a {
  color: white;
  text-decoration: none;
}

.siteInfo a:hover {
  color: #E20119;
}

footer a:focus,
footer a:active {
  outline: none !important;
  box-shadow: none !important;
}