/* Réinitialisation de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #f8f9fa;
}

/* Conteneur principal */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SECTION 1 - HERO */
.hero {
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 70vh;
  min-height: 400px;
  position: relative;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  color: #ffffff;
  padding: 20px;
  max-width: 800px;
}

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

.hero-content .slogan {
  font-size: 1.25rem;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background-color: #2c3e50;
  color: #ffffff;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #1a252f;
}

/* SECTIONS DIVERSES */
.section {
  padding: 50px 0;
  border-bottom: 1px solid #e2e8f0;
}

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

/* SECTION 3 - INFORMATIONS PRATIQUES */
.info-list {
  list-style-type: none;
}

.info-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #cccccc;
  font-size: 1.05rem;
}

.info-list li:last-child {
  border-bottom: none;
}

/* SECTION 4 - FAQ (ACCORDÉON) */
.accordion-item {
  border: 1px solid #dddddd;
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
  background-color: #ffffff;
}

.accordion-header {
  width: 100%;
  padding: 15px 20px;
  background-color: #ffffff;
  border: none;
  text-align: left;
  font-size: 1.05rem;
  font-weight: bold;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.accordion-header:hover {
  background-color: #f1f1f1;
}

.accordion-icon {
  font-size: 1.2rem;
  font-weight: bold;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fafafa;
  padding: 0 20px;
}

.accordion-item.active .accordion-content {
  padding: 15px 20px;
  max-height: 200px;
}

.accordion-item.active .accordion-header {
  background-color: #e9ecef;
}

/* SECTION 5 - CONTACT */
.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-info a {
  color: #2c3e50;
  text-decoration: underline;
}

.map-container {
  margin-top: 20px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* PIED DE PAGE */
footer {
  text-align: center;
  padding: 20px;
  background-color: #2c3e50;
  color: #ffffff;
  font-size: 0.9rem;
}