body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff8f0;
  color: #333;
}

header {
  background-color: #f4a261;
  color: white;
  text-align: center;
  padding: 1rem 0.5rem;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
}

section.contenu {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section h2 {
  color: #e76f51;
}

a {
  color: #e76f51;
  text-decoration: none;
}

footer {
  background-color: #f4a261;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* ✅ Carrousel d'images */

.carousel-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  height: 200px;
  width: auto;
  flex-shrink: 0;
  margin-right: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

/* Boutons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255,255,255,0.8);
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 5px;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

