.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;
    }
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Noto Sans", sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}



/* 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;
  }
}




.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4)), url("./../images/IMG ACTUALISEE.png");
   background-size: cover;
    background-position: center 30%; /* un peu plus haut pour mieux centrer les visages */
    background-repeat: no-repeat;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    text-align: center;
    color: white;
    flex-direction: column;
    gap: 0.75rem;

}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.033em;
    margin: 0;
    /* Police Poppins */
    font-family: 'Poppins';
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    max-width: 700px;
    /* Police Poppins */
    font-family: 'Poppins', sans-serif;
    text-align: justify;
}

.section-title {
    font-size: 1.375rem;
    font-weight: bold;
    color: #121714;
    letter-spacing: -0.015em;
    padding: 1.25rem 1rem 0.75rem;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-bottom: 1rem;
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    border-radius: 0.75rem;
}

.card-content h3 {
    margin: 0 0 0.25rem;
    color: #121714;
    font-size: 1rem;
    font-weight: 500;
}

.card-content p {
    margin: 0;
    color: #688272;
    font-size: 0.875rem;
    font-weight: 400;
}

/* ====================== 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;
  }
}



/* Styles responsives */
@media (max-width: 768px) {
    .header {
        padding: 1rem;
    }
    .hamburger {
        display: flex;
    }
    .nav-links {
        top: 0;
        right: -100%;
        width: 70%;
        justify-content: center;
        padding-top: 0;
        transition: right 0.3s ease-in-out;
        z-index: 5;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-button {
        width: auto;
    }
    .main-content {
        padding: 1rem;
        margin-right: 0;
    }
    .hero {
        min-height: 300px;
        padding: 1rem;
    }
    .hero-title {
        font-size: 1.75rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
    }
    .section-title {
        text-align: center;
    }
    .cards {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 100%;
        max-width: 500px;
    }
}

/* ===== 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 */
  }
}