.footer-mobile {
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: rgba(11, 15, 10, 1);
  }
  
  h2,
  h3 {
    color: rgba(184, 134, 11, 1);
  }
  hr {
    width: 100%; /* Occupe toute la largeur disponible */
    border: 0; /* Supprime la bordure par défaut du navigateur */
    height: 0.04rem; /* Épaisseur fine (équivalent 1px) */
    background-color: #eee; /* Couleur grise discrète */
    margin: 1.5rem 0; /* Espace de 1.5rem en haut et en bas pour aérer */
  }
  
  /* Ligne 1 */
  .line-1 {
    display: flex;
    align-items: center; /* Aligne le logo et le texte sur la même ligne verticale */
    width: 100%;
  }
  
  .logo-area {
    flex: 0 0 25%; /* Le logo occupe 30% de la largeur de la ligne */
    display: flex;
    justify-content: center;
  }
  
  .logo-area img {
    width: 4.5rem; /* Taille 2.5rem */
    height: 4.5rem;
    border-radius: 50%; /* Rend l'image parfaitement ronde */
    object-fit: cover; /* Empêche de déformer le logo si l'original n'est pas carré */
    box-shadow: whitesmoke;
  }
  
  .brand-area {
    flex: 0 0 75%; /* Le texte occupe 70% de la ligne */
    display: flex;
    flex-direction: column; /* Place le slogan sous le nom de la mairie */
    justify-content: center;
    align-items: center;
  }
  
  .brand-name {
    font-size: 1.3rem; /* Texte en grand */
    margin: 0;
    text-transform: uppercase;
    color: rgba(184, 134, 11, 1);
  }
  
  .brand-slogan {
    font-size: 1rem; /* Slogan juste en bas */
    margin: 0;
    color: rgba(192, 192, 192, 1);
  }
  
  /* Ligne 2 */
  .line-2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  /* Titre principal (informations utiles) */
  .line-2 h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-left: 0.5rem;
    font-weight: 600;
  }
  
  /* Sous-titres (horraires et Visitez-nous) */
  .line-2 h3 {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0.5rem 0rem 0.5rem 0rem;
  }
  
  /* Paragraphes de contenu */
  .line-2 p {
    font-size: 0.8rem;
    margin: 0.2rem 0;
    line-height: 1.2;
    color: rgba(192, 192, 192, 1);
  }
  
  /* Espacement spécifique pour séparer les blocs info-group */
  .info-group {
    margin-left: 2rem;
  }
  
  /* Ligne 3 - Styles des liens */
  .line-3 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .line-3 h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-left: 0.5rem;
    font-weight: 800;
  }
  
  .footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(192, 192, 192, 1);
    font-size: 0.9rem;
    margin-left: 2rem;
  }
  .footer-link svg {
    color: whitesmoke;
  }
  
  /* Ligne 4 - Centrage horizontal */
  
  .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  
  .menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* HAUTEUR DÃ‰FINIE : On fixe Ã  50px pour tout le monde */
    text-transform: uppercase;
    height: 2.5rem;
    padding: 0 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
    font-size: 0.75rem;
    color: var(--vert-inst-fonce);
    cursor: pointer;
  }
  
  .menu-list li.menu-socials {
    display: flex;
    justify-content: space-evenly; /* Aligne les 4 liens avec le mÃªme espace */
    align-items: center;
    height: 60px;
    background-color: #f9f9f9; /* Fond lÃ©gÃ¨rement grisÃ© pour distinguer */
    padding: 0;
    border-radius: 50px;
  }
  
  .menu-socials a {
    color: var(--vert-inst-fonce);
    width: 44px; /* Zone tactile large */
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
  /* Ligne 5 */
  .line-5 {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(192, 192, 192, 1);
  }
  