
 @font-face { 
 font-family: 'Garamond premier';
 src:url('../assets/fonts/Garamond Premier Pro Light Display.otf') format('opentype'); 
}
@font-face { 
  font-family: 'MontserratAlt';
  src:url('../assets/fonts/MontserratAlt1-Light.otf') format('opentype'); 
 }
body {
  margin: 0;
  padding: 0;
  font-family: 'Garamond premier', sans-serif;
}
footer {
  font-size: 16px;
}
.contact-link {
  text-decoration: none; /* Enlever le soulignement par défaut */
  border: 2px solid white; /* Ajouter une bordure noire */
  padding: 5px 10px; /* Ajouter du padding pour espacer le texte de la bordure */
  border-radius: 20px; /* Arrondir les coins */
  color: white; /* Assurer que le texte soit également noir */
}
#menu_principal {
  padding-bottom: 20px;
  margin-top: 30px;
  list-style: none;
  text-align: right;
  font-size: 16px;
}

.container_header_index {
  min-height: 100vh;
  background: url('../assets/images/banniere-VS-3-1.png') no-repeat center center ;
  background-size: cover;
}

#menu_principal li {
  display: inline-block;
  margin-right: 20px;
  margin-top: 20px;
}

#menu_principal a {
  text-decoration: none;
  color: white;
  padding: 5px 10px;
}

#menu_principal a:hover {
  color: #4e4e4e;
}
#logofooter img { 
max-width: 150px;
 }
    .content {
      margin-top: 100px; /* Pour espacer le contenu du header sticky */
      padding: 20px;
      text-align: center;
    }

/* Logo section */
#logo img {
  max-width: 100px; /* Taille du logo réduite */
  height: auto;
  margin-left: 20px;
  margin-top: 10px;
}

/* Baseline et autres éléments */
.baseline {
  text-align: center;
  font-size: 30px;
  margin-top: 400px;
  color: #FFF;
}

/* Scroll indicator */
#scroll-down-container {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

#scroll-down {
  width: 2px;
  height: 50px;
  background-color: black;
  margin-bottom: 10px;
  animation: bounce 2s infinite;
}

#scroll-text {
  color: white;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
}

.step {
            text-align: center;
            margin-bottom: 30px;
        }
        .step-number {
            font-size: 40px;
            background: #f5f5f5;
            border-radius: 50%;
            width: 100px;
            height: 100px;
            line-height: 100px;
            margin: 0 auto 15px;
        }
        .step-title {
            font-weight: bold;
            margin-bottom: 10px;
        }
        .step-description {
            color: #555;
        }
        .divider {
            width: 60%;
            height: 1px;
            background: #ccc;
            margin: 20px auto;
        }
        .button-container {
          display: flex;
          flex-direction: column; /* Affichage en colonne */
          align-items: center; /* Centrer les boutons */
          gap: 10px; /* Espacement entre les boutons */
      }
      .same-size-btn {
        width: 100%; /* Force les boutons à prendre toute la largeur disponible */
        max-width: 300px; /* Limite la taille maximale pour éviter qu'ils deviennent trop larges */
        text-align: center; /* Centre le texte à l'intérieur */
    }
          

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Sticky menu */
#sticky.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#sticky.is-sticky::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/images/banniere-VS-3-1.png) no-repeat ;
  background-size: cover;
  opacity: 0.9; /* Transparence de l'image */
  z-index: -1; /* Met l'image derrière le contenu */
}
/* Quand l'élément devient sticky
#sticky.is-sticky #logo .logo-img {
  content: url('../assets/images/VS2.png'); 
  width: 100px; 
  margin-top: 10px; 
}
*/
#sticky.is-sticky li {
  color: black;
}
#sticky.is-sticky .contact-link {
  text-decoration: none; /* Enlever le soulignement par défaut */
  border: 2px solid black; /* Ajouter une bordure noire */
  padding: 5px 10px; /* Ajouter du padding pour espacer le texte de la bordure */
  border-radius: 20px; /* Arrondir les coins */
  color: black; 
  }
  #sticky.is-sticky #logo img {
  margin-top: 0px; /* Réduit le margin-top pour faire remonter le logo */
  width: 100px; /* Ajuste la taille si souhaité */
}


  #logo img {
  width: 100px; /* Ajuste la taille selon tes besoins */
  transition: all 0.3s ease;
  margin-top: 0px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  #menu_principal {
    display: none;
  }
  #sticky {
    position: relative; /* Assurez qu'il a un contexte de position */
    z-index: 998; /* Assurez-vous que c'est le plus élevé */
  }
  
  #sticky.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998; /* Conservez une priorité élevée */
    background-color: rgba(255, 255, 255, 0.95); /* Ajoutez un fond pour cacher les éléments en dessous */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Ajoutez une ombre pour la visibilité */
  }
  #logo img {
    max-width: 70px; /* Taille du logo réduite */
    height: auto;
    margin-left: 20px;
    margin-top: 0px;
  }

#menuToggle {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  margin-top: 20px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}
#sticky.is-sticky  {
  color: white; /* Assurer que les liens restent blancs quand le menu est sticky */
}

#sticky.is-sticky #menuToggle {
  top: 20px;
  right: 20px;
  font-color: white;
}

#sticky.is-sticky #logo img {
  max-width: 70px;
  height: auto;
  margin-left: 20px;
  margin-top: 0px;
  z-index: 998;
}
#sticky.is-sticky li {
  color: white;
}
#menuToggle {
  z-index: 1000;
}

#menuToggle a {
  padding-top: 10px;
  text-decoration: none;
  color: #FFF;
  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: #FFF;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -2px;
  right: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}

#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: white;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
              background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #FFF;
  z-index: 9999;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menuToggle input:checked ~ #menu::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998; /* Derrière le menu mais au-dessus de tout le reste */
}

#menu {
  position: fixed;
  width: 300px;
  right: -300px;
  top: 0;
  height: 100vh;
  background: #000000;
  list-style-type: none;
  padding: 30px;
  padding-top: 60px;
  transition: right 0.5s ease;
  z-index: 1;
}

.vertical-bar {
  width: 2px;
  height: 100%; /* Prend toute la hauteur de la colonne */
  background-color: #DDDDDD;
  margin: 0 auto; /* Centre la barre */
}
/* Slide in the menu when checked */
#menuToggle input:checked ~ #menu {
  right: 0;
}

#menu li {
  padding: 10px 0;
  font-size: 20px;
  font-family: 'Garamond premier', sans-serif;
  color: white;
  transition: color 0.3s ease;
}
#menu a {
  color: white;
}

#menu li.active {
  color: white;
}

#menu li:hover {
  color: #0d9eb1;
}

/* Bouton de fermeture couvrant toute la croix */
#menuToggle input:checked ~ #menu,
#menuToggle input:checked ~ span {
  cursor: pointer;
}

#menuToggle input:checked ~ #menu::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1; /* Derrière le menu pour détecter les clics en dehors */
}

}

.sub_footer {
  margin-top: 50px; /* Espacement entre le footer et le sub_footer */
  padding-top: 20px; /* Ajouter un peu de padding en haut du sub_footer */
}
/* Container global */
.bloc {
    padding: 20px;
}

/* Ajuster le style des containers */
.point_fort_container {
    margin-bottom: 40px;
    padding: 20px; /* Réduit le padding interne */
    margin: 20px auto; /* Ajoute de la marge automatique pour centrer les boîtes */
    min-height: 250px;
    max-width: 300px; /* Définit une largeur maximale pour les boîtes */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ajoute une légère ombre pour plus de style */
    border-radius: 10px; /* Ajoute des coins arrondis */
    background-color: #f8f9fa; /* Couleur de fond claire pour faire ressortir les boîtes */
    z-index: -1; 
}

/* Ajuster l'image */
.point_fort img {
    width: 40px;
    margin-bottom: 15px; /* Ajoute de l'espace sous l'image */
}

/* Style du titre */
.point_fort h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center; /* Centrer le texte du titre */
}

/* Style du texte */
.point_fort p {
    text-align: center; /* Centrer le texte du paragraphe */
    font-size: 16px;
    line-height: 1.5;
}

/* Alignement central pour les lignes */
.row.text-center {
    display: flex;
    justify-content: center;
    gap: 20px; /* Ajoute de l'espacement entre les boîtes */
    flex-wrap: wrap;
}


/* Espacement entre les colonnes */
.col-md-4 {
    margin-bottom: 10px;
}

/* Largeur des colonnes */
.point_fort_container {
    max-width: 500px;
    margin: 0 auto;
}

#contact-form {
  background-image: url(../assets/images/banniere-VS-3-1.png);
    background-size: cover;
    background-position: center;
}

.bloc_competences {
  align-items: center;
  padding-top: 50px;
  padding-bottom: 20px;
}

/* Forcer tous les éléments à rester sur une ligne */
.row.text-center {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
}

.competence {
  text-align: center;
  color: black;
}

.competence img {
  max-height: 100px;
}

.competence .subtitle_main {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 767px) {
  /* Réduction de la taille des images et du texte sur mobile */
  .competence img {
    max-height: 80px;
  }


  .competence .subtitle_main {
    font-size: 18px;
  }

  /* Flex-wrap pour mobile, permettant aux éléments de s'empiler */
  .row.text-center {
    flex-wrap: wrap;
  }
.content-block {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            border: 1px solid #ddd;
            height: 100%;
        }
        .divider {
            width: 1px;
            background-color: grey;
            height: auto;
        }
        .flex-container {
            display: flex;
        }
        .content-block img {
            max-width: 100%;
            height: auto;
            margin-bottom: 15px;
        }

}

.step {
    margin-bottom: 20px;
}

.step-logo {
    margin-bottom: 20px;
}

.circle-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f1f1f1; /* Couleur de fond du cercle */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.circle-logo img {
    max-width: 60%; /* Ajuste la taille de l'image pour qu'elle soit dans le cercle */
    max-height: 60%;
}

.vertical-bar {
    width: 2px;
    height: 100%; /* Prend toute la hauteur de la colonne */
    background-color: black;
    margin: 0 auto; /* Centre la barre */
}

@media (max-width: 768px) {
    .vertical-bar {
        display: none; /* Cache la barre sur les petits écrans */
    }

    .step {
        margin-bottom: 40px; /* Ajoute de l'espace entre les blocs */
    }
}
