
/* =========================
   BASE
========================= */

body{
  margin:0;
  font-family:Inter, sans-serif;
  background:#fff;
  color:#111;
}

/* =========================
   NOM FIXE
========================= */

.name{
  position:fixed;
  top:20px;
  left:50%;
  transform:translateX(-50%);
  font-size:16px;
  letter-spacing:1px;
  opacity:0.35;
  cursor:pointer;

  background:linear-gradient(90deg,#999,#000,#999);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  z-index:10;
}

/* =========================
   CONTENEUR
========================= */

.installations{
  width:65%;
  margin:160px auto;
}

/* =========================
   LIGNES
========================= */

.row{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-bottom:100px;
}

/* décalage expo */
.row:nth-child(2){
  transform:translateX(40px);
}

.row:nth-child(3){
  transform:translateX(80px);
}

/* =========================
   PROJETS
========================= */

.project{
  width:300px;   /* taille stable */
  flex:0 0 auto; /* empêche le flex de les étirer */
  text-decoration:none;
  color:#111;

  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* =========================
   IMAGE
========================= */

.project img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}

/* =========================
   TITRE
========================= */

.project h3{
  text-align:center;
  font-size:13px;
  font-weight:300;
  opacity:0.7;
  letter-spacing:1px;
  margin-top:10px;
}
/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

  .installations{
    width:90%;
  }

 .row{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-bottom:100px;
  flex-wrap:wrap; /* 👈 CRUCIAL */
  align-items:flex-start;
}

}