/* FAQ ACCORDÉON */
.faq {
  margin-top: 20px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(59,48,48,0.2);
  padding-bottom: 10px;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: rgba(255, 240, 209, 0.6);
  border: none;
  padding: 12px 15px;
  font-size: 1.1em;
  font-weight: 600;
  color: #3B3030;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}

.faq-question:hover {
  background: rgba(121, 87, 87, 0.15);
  transform: translateX(3px);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 15px;
}

.faq-answer p {
  margin: 10px 0 0;
  font-size: 1em;
  color: #3B3030;
}

.faq-item.active .faq-answer {
  max-height: 300px; /* suffisant pour du texte */
  padding: 10px 15px;
}

.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: 90%;         /* largeur auto sur petits écrans */
  margin: 40px auto;  /* centrage horizontal + espace */

  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);
}
/* RESPONSIVE DESIGN */

/* Tablettes (<= 992px) */
@media (max-width: 992px) {
  .faq-question {
    font-size: 1em;
    padding: 10px 12px;
  }

  .faq-answer p {
    font-size: 0.95em;
  }

  .contact-map {
    max-width: 95%;
    margin: 30px auto;
  }

  .map-embed {
    height: 25vh; /* un peu plus bas sur tablette */
  }
}

/* Mobiles (<= 600px) */
@media (max-width: 600px) {
  .faq {
    margin-top: 15px;
  }

  .faq-question {
    font-size: 0.95em;
    padding: 8px 10px;
    border-radius: 6px;
  }

  .faq-answer {
    padding: 0 10px;
  }

  .faq-answer p {
    font-size: 0.9em;
    line-height: 1.4em;
  }

  .contact-map {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    border-radius: 0; /* full largeur mobile */
  }

  .map-embed {
    height: 200px; /* fixe pour éviter les scrolls excessifs */
    min-height: 180px;
  }
}/* Fluidité globale */





body, html {
  max-width: 100%;
  overflow-x: hidden; /* empêche le scroll horizontal */
}

/* Images et iframes toujours adaptatives */
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Titres et textes adaptatifs */
h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem); /* entre 1.6rem et 2.5rem */
}
h2 {
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
}
p {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  line-height: 1.6;
}

/* Ajustements tablette */
@media (max-width: 992px) {
  .content {
    padding: 15px;
  }
}

/* Ajustements mobile */
@media (max-width: 600px) {
  .content {
    padding: 10px;
  }

  button, .faq-question {
    font-size: 0.95em;
    padding: 8px 10px;
  }

  .map-embed {
    height: 200px;
  }
}

