/*****************************************************************************************************/
/********************************************** HEADER ***********************************************/
/*****************************************************************************************************/

.header-SV {
  background-color: var(--bg-white);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.7);
}

.header-SV h3 {
  color: black;
}

.logo {
  max-height: 100px;
}

.color-white {
  color: var(--bg-white);
}

/*****************************************************************************************************/
/*********************************************** FOOTER  *********************************************/
/*****************************************************************************************************/

/***************************************************************
/**************************** FOOTER  **************************
/***************************************************************/
  
  .footer-container {
      max-width: 1400px;
  }
  
  .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 2rem 0;
  }
  
  /* Logos et slogan */
  .footer-logos {
      text-align: center;
  }
  
  .acr-logo {
      max-width: 140px;
      height: auto;
      margin-bottom: 1rem;
  }
  
  .slogan {
      font-style: italic;
  }
  
  .algorel-logo {
      display: flex;
      align-items: center;
      margin-top: 1rem;
      color: #04306f;
  }
  
  .algorel-img {
      max-width: 180px;
      height: auto;
  }
  
  .algorel-text {
      font-weight: bold;
  }
  
  .footer-social h3,
  .footer-navigation h3 {
      text-align: center;
      margin-bottom: 1rem;
  }
  
  .footer-social {
      text-align: center;
  }
  
  .footer-social-links {
      list-style: none;
      padding: 0;
      display: flex;
      justify-content: center;
  }
  
  .footer-social-links li {
      margin: 0 0.5rem;
      
  }
  
  .footer-social-link {
      background-color: var(--primary-blue);
      display: flex;
      justify-content: center;
      align-items: center;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      color: white;
      text-decoration: none;
      transition: opacity 0.3s ease;
  }

  .footer-social-link:hover {
      opacity: 0.8;
  }
  
  .footer-navigation {
      text-align: center;
  }
  
  .nav-links {
      list-style: none;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .nav-links li {
      margin: 1rem;
  }
  
  .nav-links a {
      text-decoration: none;
      transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
      color: var(--primary-blue);
  }
  
  .footer-bottom {
      background-color: var(--bg-black);
      color: var(--txt-white);
      padding: 0.6rem 0;
      text-align: center;
  }
  
  .footer-bottom .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      max-width: 1400px;
      margin: 0 auto;
  }
  
  .footer-bottom p {
      margin: 0;
  }
  
  .legal-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem; 
  }
  
  .legal-links a {
      text-decoration: none;
      transition: color 0.3s ease;
  }
  
  .legal-links a:hover {
      text-decoration: underline;
  }
  
  @media (max-width: 1000px) {
  
      .nav-links {
          flex-direction: column;
          align-items: center;
      }
  
      .nav-links li {
          margin: 0 0 0.5rem;
      }
  }
  
  @media (max-width: 768px) {
      .footer-top {
          flex-direction: column;
          align-items: center;
      }
  
      .footer-logos,
      .footer-social,
      .footer-navigation {
          margin-bottom: 2rem;
      }
  
      .footer-bottom .container {
          flex-direction: column;
          gap: 0.75rem;
      }
      
      .legal-links {
          flex-direction: column;
          gap: 0.5rem;
      }
  
      .nav-links {
          flex-direction: column;
          align-items: center;
      }
  
      .nav-links li {
          margin: 0 0 0.5rem;
      }
  }