html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
}
.titre-carte {
  font-family: "Baskerville", "Garamond", serif;
  font-size: 2.3rem;
  letter-spacing: 0.12em;
  text-align: center;
  
  color: #ffffff;
  background-color: #000;
  padding: 1.2rem 0;
  margin: 0;
  width: 100%;


}

/* Conteneur principal */
.carte {
 margin-top:1rem;
 width: 100vw;
  height: 100vh;

  /* Image de fond */
  background-image: url("carte_geneve.png");
  background-repeat: no-repeat;
  background-position: center center;

  /*
    contain = toute la carte visible
    cover = plein écran mais rognage possible
  */
  background-size: contain;

  /* Couleur de fond si bandes latérales */
  background-color: #000000;

  position: relative;
}
.point {
  width: 14px;
  height: 14px;
  background: red;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  position: relative;
  z-index: 5;

  transform: translate(-50%, -50%);
}


.point:hover {
  transform: translate(-50%, -50%) scale(1.2);
}

.point-wrapper {
  position: absolute;
  z-index: 5;
}

.point-wrapper:hover .label {
  display: block;

}

/* L’étiquette */
.label {
  position: absolute;
  z-index: 20;
  top: -12px;
  left: 20px;

  background: white;
  padding: 0.8rem;
  width: 260px;

  font-size: 0.95rem;
  line-height: 1.4;

  box-shadow: 0 6px 16px rgba(0,0,0,.2);
  z-index: 10;
}

/* Variante : étiquette au-dessus du point */
.point-wrapper.top .label {
  top: auto;
  bottom: 20px;
  left: 0;

}

/* caché par défaut */
.hidden {
  display: none;
}
.label-image {
  width: 180px;        /* ← taille MAÎTRISÉE */
  max-width: 100%;
  margin-bottom: 0.6rem;
}

.label-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.point-wrapper:hover .label {
  display: block;
}
.point-wrapper:hover .label {
  display: block;
}
