
* { 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;
}

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

/* 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; /* moitié droite */
  display: flex;
  flex-direction: column;
}

.texte-images .images img {
  flex: 0.5; /* chaque image prend 1/3 de la hauteur */
  width: 50%;
  object-fit: cover;
}

  .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);
  }
