
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* SECTION SLIDER */
.nutrimaroc-slider {
  background: linear-gradient(135deg, #f5f3e7, #fffdf8);
  border-radius: 20px;
  padding: 80px 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.slide-title {
  font-family: 'Merriweather', serif;
  color: #2d6a4f;
  font-size: 2.8rem;
  animation: fadeInDown 1.2s ease-out;
}

.slide-subtitle {
  color: #b68900;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease-out;
}

.nutrimaroc-slider p {
  color: #4f4f4f;
  line-height: 1.6;
  animation: fadeIn 1.6s ease-in;
}

/* Formulaire dans le slider */
.slide-form select {
  border: 1px solid #b68900;
  border-radius: 8px;
  padding: 0.6rem;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.slide-form select:focus {
  border-color: #2d6a4f;
  outline: none;
}

/* Bouton Explorer */
.btn-explorer {
  background-color: #2d6a4f;
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  transition: all 0.3s ease;
  animation: fadeIn 2s ease;
  text-decoration: none;
}

.btn-explorer:hover {
  background-color: #40916c;
  transform: translateY(-2px);
}

/* ACCORDÉON */
.accordion-item {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background-color: #fdfcf8;
  color: #2d6a4f;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #2d6a4f;
  color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.25);
}

.accordion-body {
  background-color: #fff;
  color: #4f4f4f;
  line-height: 1.6;
}

/* Accent doré sur les flèches */
.accordion-button::after {
  filter: hue-rotate(45deg) brightness(1.2);
}

/*  IMAGES DU CARROUSEL */
.carousel-item--img {
  border-radius: 15px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* ANIMATIONS*/
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

section {
  padding: 60px 0;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
}
