
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: Gotham, 'Helvetica Neue', Helvetica, Arial, 'sans-serif'
}

/* HERO : plein écran */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
#heroVideo {
  position: relative;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}

.heroVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
#startVideo {
  position: fixed;
  top: 80px;
  right: 0px;
  z-index: 1000;            /* centre horizontalement */
  transform: translate(-50%, -50%); /* ajuste le centre exact */
           /* au-dessus de la vidéo */
  background: white;
  color: blue;
  border: 1px solid blue;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
/* Section texte + images */
.texte-images {
  display: flex;
  height: 100vh; /* exactement la hauteur de la fenêtre */
}

.texte-images .texte {
  flex: 1; /* moitié gauche */
  padding: 20px;
  display: flex;
  flex-direction: column;

  font-size: 1.2rem;
  line-height: 1.5;
	color: blue; 
}
.images1 {
	  position: absolute;
	  width: 50%;
	  padding: 20px;
}


.texte-images .images {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* On place les trois images à des positions légèrement différentes */
.texte-images .images img {
  position: absolute;
  width: 45%;
  max-width: 450px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* Image 1 : un peu à gauche et plus haut */
.texte-images .images img:nth-child(1) {
  top: 5%;
  left: 10%;
}

/* Image 2 : centrée */
.texte-images .images img:nth-child(2) {
  top: 40%;
  left: 30%;
}

/* Image 3 : un peu plus à droite et en bas */
.texte-images .images img:nth-child(3) {
  top: 50%;
  left: -20%;
}

/* Effet doux au survol */
.texte-images .images img:hover {
  transform: scale(1.05);
  z-index: 10;
}


  .bouton-projets {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: blue; /* bleu du texte */
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-decoration: none; /* pas de soulignement */
    background: none; /* pas de fond */
    border: none; /* pas de contour */
    padding: 8px 12px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 1000;
  }

  .bouton-projets:hover {
    color: #0056b3; /* bleu plus foncé au survol */
    transform: translateY(-2px);
  }
#langBtn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;           /* au-dessus de tout */
  background: white;
  color: blue;
  border: 1px solid blue;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

#langBtn:hover {
  background: blue;
  color: white;
}
