/* Logo principal dans le footer */
.footer-logo {
    height: 50px;
    width: 50px;
    object-fit: cover;
  }
  
  .footer-logo-wrapper {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .footer-logo-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .footer-logo-wrapper:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* Icônes Facebook/Instagram */
  .facebook,
  .instagram {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .instagram img,
  .facebook img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
  
  /* Couleurs */
  .facebook {
    background-color: #3b5998;
    margin-right: 8px;
  }
  
  .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888, #a617a1, #8f1bb8, #662d9e, #3e50b4, #0099cc, #2cb5e8, #48ccf0);
  }
  
  /* Effet hover */
  .facebook:hover,
  .instagram:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  }
  
  /* ✅ Sur écrans larges (≥ 992px), on agrandit tout */
  @media (min-width: 992px) {
    .footer-logo {
      height: 80px;
      width: 80px;
    }
  
    .footer-logo-wrapper {
      height: 100px;
      width: 100px;
      padding: 12px;
    }
  
    .facebook,
    .instagram {
      height: 50px;
      width: 50px;
      padding: 10px;
    }
  }
  