 /* ===== RESET & BASE ===== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      background-color: #f9fafb;
      color: #111827;
      line-height: 1.5;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 32px 16px;
    }

    .banner {
    background-color: #ffd700;
    /* couleur dorée pour un prix */
    color: #0f2430;
    /* texte sombre pour contraste */
    padding: 12px 0;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    white-space: nowrap;
}

.banner-track {
    display: inline-flex;
    width: max-content;
    animation: marquee 18s linear infinite;
}

.banner-track span {
    padding-right: 60px;
}

.banner:hover .banner-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .banner {
        font-size: 14px;
        padding: 10px 0;
    }
    .banner-track {
        animation-duration: 12s;
    }
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url("./../images/PHOTO-2024-03-10-10-41-39.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    text-align: center;
    color: white;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 900;
    letter-spacing: -0.033em;
    margin: 0;
    text-align: center;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 100;
    max-width: 700px;
    text-align: center;
}

.section-title {
    font-size: 1.375rem;
    font-weight: bold;
    color: #121714;
    letter-spacing: -0.015em;
    padding: 1.25rem 1rem 0.75rem;
}


    /* Navigation verticale (bureau) */
 /* ====================== HEADER ====================== */
.main-header {
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* GAUCHE */
.header-left {
  flex-shrink: 0;
}

.brand-name {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  margin: 0;
  line-height: 1;
}

.brand-location {
  font-size: 13px;
  color: #d97706;
  font-weight: 500;
  margin: 4px 0 0 0;
}

/* CENTRE - LOGO */
.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
}

/* DROITE - NAVIGATION */
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-item:hover {
  color: #d97706;
}

.nav-item.active {
  color: #d97706;
  font-weight: 600;
  position: relative;
}

.nav-item.active:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d97706;
}

/* BOUTON MOBILE */
.mobile-btn {
  font-size: 28px;
  background: none;
  border: none;
  color: #374151;
  cursor: pointer;
  display: none;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .header-inner {
    padding: 16px 20px;
  }
  
  .header-logo {
    height: 52px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
  
  .mobile-btn {
    display: block;
  }
  
  .header-inner {
    justify-content: space-between;
  }
}

/* ===== À LA UNE ===== */
    .featured-section {
      margin-bottom: 48px;
    }

    .featured-label {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #d97706;
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 12px;
    }

    .pulse-dot {
      width: 12px;
      height: 12px;
      background-color: #d97706;
      border-radius: 50%;
      animation: pulse 1.5s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.9); }
    }

    .featured-card {
      display: grid;
      grid-template-columns: 1fr;
      background: #ffffff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    }

    .featured-image {
      width: 80%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .featured-content {
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .featured-date {
      font-size: 14px;
      color: #6b7280;
    }

    .featured-title {
      font-size: 28px;
      font-weight: 700;
      margin-top: 12px;
      line-height: 1.25;
      color: #111827;
    }

    .featured-text {
      margin-top: 16px;
      color: #4b5563;
      font-size: 16px;
    }

    .featured-btn {
      display: inline-block;
      margin-top: 24px;
      background-color: #000000;
      color: #ffffff;
      padding: 14px 32px;
      border-radius: 16px;
      font-weight: 500;
      text-decoration: none;
      transition: background-color 0.3s ease;
      width: fit-content;
    }

    .featured-btn:hover {
      background-color: #1f2937;
    }

    /* ===== TOUTES NOS ACTUALITÉS ===== */
    .news-section {
      margin-top: 20px;
    }

    .news-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 24px;
      color: #111827;
    }

    .news-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .news-card {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
      transition: all 0.3s ease;
    }

    .news-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    }

    .news-card img {
      width: 100%;
      height: 208px;
      object-fit: cover;
      display: block;
    }

    .news-card-body {
      padding: 20px;
    }

    .news-card-date {
      font-size: 12px;
      color: #6b7280;
    }

    .news-card-title {
      font-size: 18px;
      font-weight: 600;
      margin-top: 4px;
      color: #111827;
      line-height: 1.3;
    }

    .news-card-text {
      font-size: 14px;
      color: #4b5563;
      margin-top: 8px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .news-card-link {
      display: inline-block;
      margin-top: 16px;
      color: #d97706;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
    }

    .news-card-link:hover {
      text-decoration: underline;
    }

    /* ===== RESPONSIVE ===== */
    @media (min-width: 768px) {
      .featured-card {
        grid-template-columns: 7fr 5fr;
      }

      .featured-image {
        height: 100%;
        min-height: 360px;
      }

      .featured-title {
        font-size: 30px;
      }

      .news-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .news-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* ====================== FOOTER ====================== */
.main-footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 70px 0 30px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

/* Colonnes */
.footer-col h4,
.footer-col h5 {
  color: white;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

.footer-brand {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-description {
  font-size: 15px;
  line-height: 1.5;
}

/* Liens */
.footer-link {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #fbbf24;
}

/* Icônes sociales */
.social-icons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.social-icon {
  color: #9ca3af;
  font-size: 24px;
  transition: all 0.3s;
}

.social-icon:hover {
  color: #fbbf24;
  transform: translateY(-3px);
}

/* Contact */
.footer-contact {
  font-size: 15px;
  color: #fbbf24;
}

/* Copyright */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #374151;
  font-size: 14px;
  color: #6b7280;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SLIDER RÉALISATIONS ===== */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.slider-container {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 20px;
}

/* Chaque carte prend la même largeur que dans la grille */
.slider-track .news-card {
  flex: 0 0 calc(33.333% - 14px); /* 3 cartes visibles sur desktop */
  min-width: 0;
}

/* Flèches */
.slider-btn {
  background: #1a1a2e;
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.3s, transform 0.2s;
  flex-shrink: 0;
  z-index: 2;
}

.slider-btn:hover {
  background: #e94560;
  transform: scale(1.08);
}

.slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* Responsive */
@media (max-width: 900px) {
  .slider-track .news-card {
    flex: 0 0 calc(50% - 10px); /* 2 cartes */
  }
}

@media (max-width: 600px) {
  .slider-track .news-card {
    flex: 0 0 100%; /* 1 carte */
  }
  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

/* ===== MENU MOBILE ===== */
.mobile-btn {
  display: none;               /* caché sur desktop */
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #1a1a2e;
  cursor: pointer;
  z-index: 1001;
}

/* Menu ouvert */
.header-nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;                   /* juste sous le header */
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  gap: 15px;
  z-index: 1000;
}

.header-nav.active .nav-item {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-btn {
    display: block;
  }

  .header-nav {
    display: none;             /* caché par défaut sur mobile */
  }
}

/* ===== TEASER DOCU-THÉÂTRE ===== */
.teaser-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.teaser-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: #f8f8f8;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.teaser-left {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.teaser-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.teaser-question {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.teaser-question span {
  color: #F5C518;
}

.teaser-btn {
  display: inline-block;
  background: #1a1a1a;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}

.teaser-btn:hover {
  background: #F5C518;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.teaser-right {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teaser-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

/* Responsive */
@media (max-width: 768px) {
  .teaser-card {
    grid-template-columns: 1fr;
  }
  
  .teaser-question {
    font-size: 1.7rem;
  }
  
  .teaser-left {
    padding: 40px 28px;
  }
}