CSS
/* ==========================================
   1. VARIABLES & REINITIALISATION
   ========================================== */
:root {
  --primary-color: #1a252f;  /* Bleu nuit sécurité */
  --secondary-color: #3498db;/* Bleu vif */
  --accent-color: #e67e22;   /* Orange / Alerte */
  --text-dark: #2c3e50;
  --text-light: #555;
  --bg-light: #f4f6f9;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Arial", sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
}

/* ==========================================
   2. BARRE DE NAVIGATION (NAVBAR)
   ========================================== */
.navbar {
  background-color: var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.nav-logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 5px 10px;
}

.nav-links a:hover, 
.nav-links a.active {
  color: var(--secondary-color);
}

/* ==========================================
   3. BANNIERE DEFILANTE AUTOMATIQUE
   ========================================== */
.banner-section {
  display: flex;
  justify-content: center;
  padding: 30px 20px;
  background-color: #eef2f5;
}

.carousel-container {
  width: 300px; /* Taille carrée fixe et contenue */
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.carousel-slide {
  display: flex;
  width: 500%; /* 5 images = 500% */
  height: 100%;
  /* Animation CSS pure : 5 images -> 20s de cycle total */
  animation: scrollCarousel 20s infinite ease-in-out;
}

.carousel-slide img {
  width: 20%; /* Chaque image prend exactement 100% du conteneur (1/5) */
  height: 100%;
  object-fit: cover;
}

/* Animation fluide avec des temps d'arrêt sur chaque image */
@keyframes scrollCarousel {
  0%, 15%   { transform: translateX(0); }
  20%, 35%  { transform: translateX(-20%); }
  40%, 55%  { transform: translateX(-40%); }
  60%, 75%  { transform: translateX(-60%); }
  80%, 95%  { transform: translateX(-80%); }
  100%      { transform: translateX(0); }
}

/* ==========================================
   4. CONTENU PRINCIPAL & STATUT
   ========================================== */
.main-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.status-container {
  background-color: var(--white);
  border: 1px solid #e1e8ed;
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.status-container h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.status-container h2 {
  color: var(--secondary-color);
  font-size: 1.3em;
  margin-bottom: 30px;
}

.icon {
  font-size: 3.5em;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.action-link {
  margin: 30px 0;
}

.action-link a {
  text-decoration: none;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.action-link a:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
}

.signature {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-style: italic;
  color: var(--text-light);
}

/* ==========================================
   5. ESPACE PRÉSENTATION EN DAMIER (GRID)
   ========================================== */
.damier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 colonnes égales */
  gap: 0; /* Pas d'espace pour l'effet bloc damier parfait */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.damier-block {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.text-block {
  background-color: var(--white);
}

.text-block h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
}

/* Petite barre decorative sous les titres du damier */
.text-block h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  margin-top: 8px;
}

.image-block {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Images de remplacement pour le damier (Modifiables via vos propres images) */
.img1 { background-image: url('https://images.unsplash.com/photo-1508847154043-be12a62861c1?w=500&auto=format&fit=crop&q=60'); }
.img2 { background-image: url('https://images.unsplash.com/photo-1582139329536-e7284fece509?w=500&auto=format&fit=crop&q=60'); }
.img3 { background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=500&auto=format&fit=crop&q=60'); }

/* responsive : Sur mobile, le damier passe sur une seule colonne */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Cache les liens sur mobile pour rester simple sans JS */
  }
  .damier-grid {
    grid-template-columns: 1fr;
  }
  /* Réorganisation visuelle optionnelle pour que l'ordre texte/image alterne bien sur mobile */
  .img2 {
    grid-row: 3;
  }
}