/* style.css */

/* affichage du body, polices, etc. */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Hero banner */
header.bg-primary {
  background-color: #2c6f2e !important; /* vert agriculteur, tu peux ajuster */
}

header.bg-primary .lead {
  color: #e9f7ec;
}

/* Cards in actualités */
.card-title a {
  text-decoration: none;
  color: #2c6f2e;
}

.card-title a:hover {
  text-decoration: underline;
}

/* Footer styles */
footer.bg-light {
  background-color: #f8f9fa !important;
}

/* Responsive tweaks si besoin */
@media (max-width: 768px) {
  header .container h1 {
    font-size: 1.8rem;
  }
}