@font-face {
  font-family: 'Coolvetica';       /* Nom que tu choisis pour l'utiliser dans CSS */
  src: url('/fonts/AlteHaasGroteskRegular.ttf') format('truetype'); /* Chemin vers le fichier et type */
  font-weight: bold;          
  font-style: normal;           
}



body {
  min-height: 100vh;
  padding-bottom: 30vh;
}

.titre{
    font-family: 'Coolvetica', sans-serif;
    font-size: 4rem;
}




.moyen{
  font-family: 'Coolvetica', sans-serif;
  position: fixed;
  font-size: 0.75rem;
  top: 1rem;
  left: 1rem;
  color: black;
  text-decoration: none;
  z-index: 1000;
}




.gallery {
  display: flex;
  justify-content: center;   /* centre tout le bloc images + texte */
  margin-top: 10%;
}

.images-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* 👈 texte aligné au bord gauche des images */
}

.images {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: flex-start; /* aligne les lignes à gauche dans le container */
}

.images img {
  max-width: 300px;   /* limite la largeur de chaque image */
  max-height: 300px;  /* limite la hauteur */
  width: auto;        /* conserve les proportions */
  height: auto;       /* conserve les proportions */
  display: block;
}

.texte {
  margin-top: 0.625rem;
  font-family: 'Coolvetica', sans-serif;
  text-align: left;
  font-size: 0.75rem;
}






.tramway {
  position: absolute;
  top: 190%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(20rem, 50vw, 31.25rem); 
  text-align: left;
}

.tramway img {
  width: 100%;
  height: auto;
  display: block;
}

.tramway p {
  margin-top: 0.625rem;   
  font-size: 0.75rem;   
  color: #333;
  word-wrap: break-word;
  width: 100%;
  text-align: left;      
  box-sizing: border-box;
  font-family: 'Coolvetica', sans-serif;
}




.flou1 {
  position: absolute;
  top: 93%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(50px, 50vw, 500px); /* responsive */
  height: auto;
}


.flou2 {
  position: absolute;
  top: 144%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(50px, 40vw, 400px); /* responsive */
  height: auto;
}


.olympus {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 105%;
  align-items: flex-start; /* toutes les images alignées en haut */
}

.olympus img {
  width: clamp(50px, 30vw, 300px); /* responsive */
  height: auto;                     /* garde proportions */
  display: block;
  object-fit: cover;                /* ajuste bien l’image si elle dépasse */
}

.texte2 {
  font-size: clamp(12px, 1.5vw, 12px);
  margin-top: 0.5rem;
  font-family: 'Coolvetica', sans-serif;
  text-align: left;
}
