/* Footer */
.footer {
    background: #044f5b;
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
  }
  
  .footer .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  gap: 20px;
  }
  
  .footer-section {
    flex: 1;
    padding: 10px;
    text-align: center;
  }
  
  .footer-nav-section {
    text-align: left;
  }
  
  .footer-description-section {
    text-align: right;
  }
  
  /* Lignes */
  .footer-underline {
    width: 90%;
    height: 1px;
    background-color: #ffffff;
    margin: 20px auto;
  }
  
  /* Navigation Links */
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav li {
    margin: 5px 0;
  }
  
  .footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .footer-nav a:hover {
    color: #21a9e1;
  }
  
  /* Section Réseaux Sociaux */
  .footer-social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px; /* Espace entre le texte et les icônes */
  }
  
  .social-title {
    margin: 0;
  font-size: var(--fs-small);
    font-weight: bold;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0;
    margin-left: -45px;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  
  
  
  /* Description */
  .footer-description {
    font-size: var(--fs-small);
    line-height: 1.6;
    margin: 0;
  }
  
  /* Bas de page */
  .footer-bottom {
    text-align: center;
    font-size: var(--fs-small);
    margin-top: 20px;
    color: #ffffffaa;
  }
  
  
  /* Liens légaux */
  .legal-links {
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }
  
  .legal-links li {
    margin: 0 auto; /* Centrage unique si un seul élément */
  }
  
  .legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: var(--fs-small);
  }
  
  .legal-links a:hover {
    text-decoration: underline;
  }
  
  
  
  .copyright {
    font-size: var(--fs-small);
    margin: 10px 0;
    color: #ffffffaa;
  }
  
  
  .footer-link {
    font-size: var(--fs-small);
    margin: 10px 0;
    color: #ffffffaa;
    cursor: pointer;
  }
  .footer-link:hover {
    color: #ffffff;
  }
  

  @media (max-width: 1200px) {
  

    #footer .footer-section {
      flex: 1 1 100%;
      margin-bottom: 20px;
    }
  }


  @media (max-width: 1200px) {


    /* Footer adjustments */
    #footer .footer-section {
      flex: 1 1 100%;
      margin-bottom: 20px;
    }
  
  }



@media (max-width: 640px) {
  .footer {
    padding: 32px 16px;
  }
  .footer .container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer-section,
  .footer-nav-section,
  .footer-description-section {
    text-align: center;
    flex: 1 1 100%;
  }
  .footer-nav {
    text-align: center;
  }
  .social-links {
    margin-left: 0;
    gap: 12px;
  }
  .social-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 840px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }
}