.article-ouest {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* HERO */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
}
.hero-img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: cover;
  filter: brightness(70%);
  display: block;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.hero-text h1 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.hero-text p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin-top: 10px;
}

/* INTRO */
.intro {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.intro h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 20px;
}

/* GRIDS */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}
.grid.reverse {
  flex-direction: row-reverse;
}
.grid-item {
  flex: 1 1 300px;
  min-width: 280px;
}
.grid-item img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* FAUNE */
.faune {
  padding: 40px 20px;
  background: #f9f9f9;
}
.faune h2 {
  text-align: center;
  margin-bottom: 30px;
}
.faune-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}
.faune-grid img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* CAMPING */
.camping {
  padding: 40px 20px;
  background: #eef7f2;
}

/* CONCLUSION */
.conclusion {
  padding: 50px 20px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
}
.conclusion img {
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-radius: 12px;
}
