.map {
  position: relative;
  width: 100%;
  height: 600px;
  text-align: center;
  background: #000;
  display:flex ; 
  flex-direction:column ; 
  align-items:center ;
}

.map h1 {
  color: orangered;
  font-size: 2rem;
  margin-bottom: 10px;
  padding-top: 50px;
}

/* ===== Carte et marker ===== */
.map .img_container {
  background-color: #f9f6f6;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  position: relative;
}

.map .img_container img {
  width: 100%;
  height: auto;
}

.map .marker {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 48%; /* position relative à la carte */
  left: 18%;
  transform: translate(-50%, -50%);
  border: 2px solid orangered;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.marker img {
  width: 12px;
  height: 12px;
}

.map a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 245px;
  height: 40px;
  text-decoration: none;
  color: #fff;
  background: orangered;
  border-radius: 5px;
  font-weight: bold;
}

@media (max-width: 950px) {
  html, body {
    overflow-x: hidden;
}
  .map a {
    left:25%;
    width: 225px;
    height: 30px;
  }
  
}
