* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: Helvetica, Arial, sans-serif;
  overflow-x: hidden; /* empêche le scroll horizontal */
}

/* HERO : vidéo plein écran */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* CONTENU : flex pour images à gauche, texte à droite */
.content-wrapper {
  display: flex;
  gap: 40px;          /* espace entre images et texte */
  padding: 40px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;     /* centré horizontalement */
  padding-top: 60px;  /* espace entre vidéo et contenu */
}

/* IMAGES */
.images {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.img1, .img2 {
  width: 85%;   /* prend 40% de la largeur du contenu */
  height: auto;
}

/* TEXTE */
.texte {
  width: 60%;
  text-align: justify;
color: blue;
}

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

.bouton-projets:hover {
  color: #0056b3;
  transform: translateY(-2px);
}
