body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* LOGO */
.logo {
  width: 100%;
  height: auto;
  display: block;
}

/* SECTIONS */
section {
  padding: 60px 80px;
}

/* PRESENTATION */
.presentation p {
  max-width: 900px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* PROJETS */
.projets {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.projet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.projet img {
  width: 100%;
}

.texte-projet p {
  line-height: 1.6;
}

/* CONTACT */
.contact {
  padding: 40px 80px;
  font-size: 0.9rem;
  opacity: 0.7;
}
.full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.grille-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grille-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.grille-images img {
    aspect-ratio: 16 / 9;
}
.grille-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

