/* --- REGLES DE BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #2b2b2b;
  background-color: #fcfdfc;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- NAVIGATION & HEADER --- */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #1b4332;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover, nav a.active {
  color: #2d6a4f;
}

.btn-nav {
  background-color: #2d6a4f;
  color: white !important;
  padding: 8px 16px;
  border-radius: 6px;
}

.btn-nav:hover {
  background-color: #1b4332;
}

/* --- HERO SECTION --- */
.hero {
  /* Filtre assombrissant vert + l'image de bannière en fond */
  background: linear-gradient(rgba(27, 67, 50, 0.75), rgba(45, 106, 79, 0.75)), 
              url('banniere.jpg') center/cover no-repeat;
  color: white;
  padding: 100px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 30px auto;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* --- BOUTONS --- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s;
}

.btn-primary {
  background-color: #52b788;
  color: #081c15;
}

.btn-primary:hover {
  background-color: #74c69d;
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: #1b4332;
}

.btn-large {
  font-size: 1.1rem;
  padding: 16px 32px;
}

/* --- SECTIONS GLOBALES --- */
.section {
  padding: 70px 0;
}

.section h2 {
  font-size: 2rem;
  color: #1b4332;
  text-align: center;
  margin-bottom: 20px;
}

.lead {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #4a5568;
}

/* --- GRILLE D'ARGUMENTS --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.03);
  text-align: center;
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #2d6a4f;
  margin-bottom: 10px;
}

/* --- SECTION CALL TO ACTION --- */
.cta-section {
  background-color: #e8f5e9;
}

.cta-section p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.text-center {
  text-align: center;
}

/* --- FOOTER --- */
footer {
  background-color: #1b4332;
  color: white;
  padding-top: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
}

.footer-links a {
  display: block;
  color: #b7e4c7;
  text-decoration: none;
  margin-top: 8px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #2d6a4f;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  color: #95d5b2;
}


/* --- EN-TÊTE DE PAGE (PRESENTATION, ACTIONS, ETC.) --- */
.page-header {
  background-color: #1b4332;
  color: white;
  padding: 50px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1rem;
  color: #b7e4c7;
  max-width: 700px;
  margin: 0 auto;
}

/* --- BLOCS DE CONTENU --- */
.content-block {
  background: white;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  margin-bottom: 30px;
}

.content-block h2 {
  text-align: left;
  margin-bottom: 15px;
  color: #2d6a4f;
  border-bottom: 2px solid #e8f5e9;
  padding-bottom: 8px;
}

.content-block p {
  margin-bottom: 15px;
  color: #4a5568;
}

.styled-list {
  list-style: none;
  padding-left: 0;
}

.styled-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #2b2b2b;
  line-height: 1.5;
}

/* --- TIMELINE PRESIDENCE --- */
.timeline {
  border-left: 3px solid #52b788;
  padding-left: 20px;
  margin-top: 20px;
}

.timeline-item .date {
  font-weight: bold;
  color: #2d6a4f;
  display: block;
  margin-bottom: 5px;
}

/* --- CARTE ACTIONS --- */
.action-card {
  display: flex;
  gap: 25px;
  background: white;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  margin-bottom: 25px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  align-items: flex-start;
}

.action-icon {
  font-size: 2.8rem;
  background-color: #e8f5e9;
  padding: 15px;
  border-radius: 12px;
  line-height: 1;
}

.action-details {
  flex: 1;
}

.action-badge {
  display: inline-block;
  background-color: #2d6a4f;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.action-details h2 {
  font-size: 1.4rem;
  color: #1b4332;
  text-align: left;
  margin-bottom: 10px;
}

.action-details p {
  color: #4a5568;
  font-size: 1rem;
}

/* Responsivité pour mobiles */
@media (max-width: 600px) {
  .action-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .action-details h2 {
    text-align: center;
  }
}

/* --- WIDGET FACEBOOK --- */
.facebook-widget-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}