* { 
  box-sizing: border-box; 
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
	background: blue;
}

/* HERO : prend toute la fenêtre */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: blue; /* ✅ fond bleu sous la vidéo */
}

/* Vidéo en fond plein écran */
.hero-video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: contain;        /* montre toute la vidéo */
  object-position: center;    /* centre la vidéo */s   /* ✅ bleu derrière si bandes */
  z-index: 1;
}

/* (optionnel) contenu posé sur la vidéo */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* contenu sous la vidéo */
.content {
  background: #fff;
  color: blue;
  padding: 40px;
  min-height: 100vh;
  text-align: justify;
}

  .bouton-projets {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: white; /* 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);
  }

.texte-bas-gauche {
  position: fixed;      /* reste en bas même si on fait défiler la page */
  bottom: 20px;         /* distance du bas de la fenêtre */
  left: 20px;           /* distance du bord gauche */
  color: white;          /* couleur du texte */
  font-family: Helvetica, Arial, sans-serif;
}

.texte-bas-gauche h {
  margin: 0 0 5px 0;    /* petit écart sous le titre */
  font-size: 16px;
  font-weight: bold; 
}

.texte-bas-gauche p {
  margin: 0;
  font-size: 16px;
}
