/* RESET SIMPLE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f6f9;
  color: #222;
  line-height: 1.6;
}

/* HERO */
.hero {
  position: relative;
  height: 70vh;
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

#heroContactBtn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  background: #ffb400;
  color: #222;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
}

#heroContactBtn:hover {
  background: #e0a000;
}

/* SECTIONS GÉNÉRALES */
.section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0b4f6c;
}

/* INFORMATIONS PRATIQUES */
.info-list {
  list-style: none;
  padding-left: 0;
}

.info-list li {
  background: white;
  margin-bottom: 10px;
  padding: 10px 15px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* FAQ – ACCORDÉON */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  background: white;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  overflow: hidden;
}

.accordion-question {
  width: 100%;
  text-align: left;
  padding: 12px 15px;
  border: none;
  background: #e8f1f8;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-question:hover {
  background: #d6e6f3;
}

.indicator {
  font-weight: bold;
  margin-left: 10px;
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 15px;
}

.accordion-answer p {
  padding: 10px 0 15px 0;
}

/* ÉTAT OUVERT (géré par JS via classe .open) */
.accordion-item.open .accordion-answer {
  max-height: 200px;
}

.accordion-item.open .accordion-question {
  background: #c9ddf0;
}

.accordion-item.open .indicator {
  transform: rotate(45deg);
}

/* CONTACT – CARTE */
.map-container {
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: 0;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #0b4f6c;
  color: white;
  margin-top: 40px;
  font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
