body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  /* justify-content: flex-end; /* Aligne le contenu en bas */
  justify-content: center; /* Aligne le contenu au centre */
  align-items: flex-end;       /* Centre horizontalement */
  overflow: hidden;
}

.hero-content{
  text-align: center;
  margin: 0;              /* ⬅︎ enlève le décalage vers le bas */
  z-index: 2;
  display: inline-block;  /* ⬅︎ le conteneur prend la largeur de son contenu */
  align-self: flex-end;   /* ⬅︎ et on le colle bien sur la DROITE du .hero */
}

.hero-content img{
  width: 100%;            /* l’image remplit le conteneur */
  max-width: 700px;       /* limite sur desktop */
  height: auto;
  display: block;
  margin: 0;              /* plus de centrage interne qui recentre visuellement */
}

/* Mobile : pleine largeur si tu veux garder le centrage sur smartphone */
@media (max-width: 1200px){
  .hero{ align-items: center; }  /* centre horizontalement en mobile */
  .hero-content{ max-width: 100%; }
  .hero-content img{ max-width: 100%; }
}


.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.content-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  border-bottom: 1px solid #ddd;
}

/* pour limiter le “tap & hold” : */
.background-video {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}


/*
.captcha-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.captcha-icon {
  width: 64px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.captcha-icon:hover {
  transform: scale(1.1);
}
  */