/* Évite tout débordement horizontal */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Container principal */
.accueil-top-container {
  width: 100%;
  height: fit-content;
}

/* Section contenant la vidéo + le texte */
.accueil-top {
  position: relative;
  height: calc(100vh - 88px); /* Ajusté à ton header */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Vidéo en fond */
.accueil-top video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  display: block;
}

.accueil-top-fader {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.352);
  display: flex;
  align-items: center;

}
.accueil-top-infos {
  width: 100%;

  border-left: 3px solid #E0E0E0;

font-weight: bold;
  text-align: center;
  padding: 2rem;
  max-width: 100%;
  margin-left: 3rem;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 1rem;
}

.accueil-top-infos p{
text-align: left;
font-size: 30px;
width: 100%;
}

.accueil-top-infos-logo {
    width: 150px;
}

/* version mobile */

@media (max-width: 862px) {
.accueil-top-infos-logo {
    width: 90px;
    margin: auto;
}

.accueil-top-infos {

  max-width: 90%;
  
}

.accueil-top-infos p{
text-align: left;
font-size: 20px;
}
}
