/* 
BARRE DE NAVIGATION - Navbar 
*/
.navbar {
    background-color: var(--light-2);
  }
  
  .nav-link {
    position: relative;
    color: #323232; /* Couleur par défaut */
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.3s ease-in-out, transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Animation plus naturelle */
    display: inline-block;
    text-align: center;
  }
  
  .nav-link:hover {
    color: var(--accent); /* Couleur au survol */
    transform: scale(1.1); /* Zoom de 10% */
  }
  
  /* Style pour le lien actif */
  .nav-link.active {
    color: var(--secondary) !important; /* Couleur du texte */
    font-weight: bold !important;
  }
  
  .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 85%;
    height: 4px;
    background-color: var(--primary);
    transition: width 0.3s ease-in-out;
  }


  /* Effet au hover */
  .nav-link:hover::after {
    width: 100%;
    left: 0;
  }

  .fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex; /* Utilisation de flexbox pour aligner les éléments */
    flex-direction: column; /* Organisation en colonne */
  }
  
  .phone-number {
    position: absolute;
    background-color: var(--light-2);
    bottom: 0; 
    right: 0;
    padding-right: 10px;
    z-index: 1001;
  }
  
  .marquee-container {
    overflow: hidden;
    width: 90%;
    background-color: var(--primary);
    padding: 4px;
  }

  @media (max-width: 918px) {
    .marquee-container {
      padding: 15px;
      background-color: var(--light-2);
    }
    .marquee-item {
     display: none;
    }
  }
  
  .marquee {
    white-space: nowrap;
    animation: marquee 30s linear infinite;
  }
  
  .marquee-item {
    margin-right: 30px;
    font-size: 1em;
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  