

.contact-map {
  position: relative;
  z-index: 2;
  background: rgba(255, 240, 209, 0.95);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 800px;   /* largeur max sur desktop */
  width: 100%;         /* largeur auto sur petits écrans */

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-map:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.map-embed {
  width: 100%;
  height: 30vh;        /* hauteur responsive */
  min-height: 250px;   /* min sur mobile */
  border: none;
  border-radius: 8px;
  filter: brightness(1) contrast(1.07) saturate(1.17);
}

/* ✅ Bouton carte */
.map-button {
  display: inline-block;
  margin: 20px auto 0 auto; /* centré */
  padding: 12px 24px;
  background: #3B3030; /* ton brun foncé */
  color: #FFF0D1;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1.1em;
  transition: all 0.3s ease;
  text-align: center;
}

.map-button:hover {
  background: #795757;
  color: #fff;
  transform: scale(1.05);
}

/* ✅ MEDIA QUERIES */
@media (max-width: 768px) {
  .contact-map {
    width: 100%;        /* occupe 100% */
    padding: 12px;      /* padding inclus grâce à border-box */
    box-sizing: border-box;
    margin: 20px auto;  /* toujours centrée */
  }
}
  .map-embed {
    height: 40vh; /* un peu plus haut sur mobile */
    min-height: 200px;
  }
  .map-button {
    width: 100%; /* bouton full width sur mobile */
    padding: 14px;
    font-size: 1em;
  }

@media (max-width: 768px) {
  .cta-button {
    display: block;      /* force un bouton par ligne */
    width: 100%;         /* prend toute la largeur dispo */
    margin: 10px 0;      /* espace vertical entre chaque bouton */
    font-size: 1em;      /* adapte un peu la taille */
  }
}
