footer {
    display: flex;
    flex-direction: column;
    color: #E0E0E0;
    width: 100%;
    height: fit-content;
    padding: 1rem;
    align-items: center;
    gap: 1rem;
 
}

.footer-info {
    font-size: 12px;

}

.footer-top {
    font-size: 16px;
display: flex;
width: 100%;
height: fit-content;
align-items: center;
justify-content: space-evenly;
gap: 1rem;

}

.footer-logo {
  width: 50px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    
}

.footer-social {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;

}

.footer-social-logo {
    height: 30px;
}


.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, auto); /* 2 colonnes automatiques */
    gap: 0.5rem 2rem; /* espacements vertical et horizontal */
}


.footer-nav a{
    color: #E0E0E0;
    text-decoration: none;
}

.sticky-menu {
    display: none;
}


/* menu bas de page mobile */

/* Responsive */
@media (max-width: 862px) {

    footer {
    padding-bottom: 50px;
 
}

.footer-top {
   flex-direction: column;

}


    .sticky-menu {
        display: block;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #000000;
      border-top: 1px solid #424141;
      display: flex;
      justify-content: space-around;
      align-items: center;
      height: 50px;
      z-index: 999;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }

    .sticky-menu-button {
  flex: 1;
  height: 100%;
  text-align: center;
  color: white;
  padding: 10px;
  
  background: transparent;
  font-size: 16px;
}

.sticky-border {
    border-right: 1px solid #424141;
}

.sticky-logo {
    height: 100%;
}

  

}