/* ✅ BANNIÈRE HORIZONTALE FIXE EN HAUT */
.banniere {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: transparent;
  padding: 20px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  z-index: 1000;
  border-bottom: 0px solid #ffffff;
}

/* ✅ ESPACE ENTRE LES ÉLÉMENTS DE LA BANNIÈRE */
.banniere img {
  margin-right: 60px;
  height: auto;
  object-fit: contain;
  display: block;
}


/* ✅ STYLES SPÉCIFIQUES PAR IMAGE (même tailles qu’avant) */
.Signature {
  width: 120px;
}
.TexteArchitecture {
  width: 180px;
}
.TextePhoto {
  width: 130px;
}
.TexteApropos {
  width: 150px;
}
.TexteContact {
  width: 130px;
}

.container {
  padding-top: 160px; /* espace suffisant pour la bannière */
  box-sizing: border-box;
}

/* ✅ GALERIE EN COLONNES */
.galerie {
  column-count: 3;
  column-gap: 1rem;
  padding: 0px 20px 20px 20px; /* espace pour la bannière en haut */
  margin: 0;
  box-sizing: border-box;
}

/* ✅ IMAGES DE LA GALERIE */
.galerie img {
  width: 100%;           /* s’adapte à la largeur de la colonne */
  height: auto;          /* conserve les proportions */
  display: block;
  margin-bottom: 1rem;
  border-radius: 0;
  break-inside: avoid;   /* évite les coupures entre colonnes */
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* ✅ EFFET AU SURVOL */
.galerie img:hover {
  transform: scale(1.02);
}

/* ✅ LIEN */
.galerie a {
  text-decoration: none;
  display: block;
}
/* ✅ ADAPTATION MOBILE */
@media screen and (max-width: 768px) {
  .banniere {
    flex-direction: column;         /* passe les éléments en colonne */
    height: auto;                   /* laisse la hauteur s’adapter au contenu */
    padding: 10px 20px;             /* réduit l’espace */
    align-items: flex-start;        /* aligne les éléments à gauche */
  }

  .banniere img {
    margin: 10px 0;                 /* espace vertical entre les éléments */
  }

  .Signature,
  .TexteArchitecture,
  .TextePhoto,
  .TexteApropos,
  .TexteContact {
    width: 100%;                    /* chaque image prend toute la largeur */
    max-width: 200px;               /* limite la taille */
  }

  .container {
    padding-top: 240px;             /* ajuste en fonction de la hauteur réelle */
  }
}















