/* footer.css */
.footer-section {
  background-color: #eaeaea;
  padding: 4rem 0 2rem; /* Plus de padding-bottom pour éviter le chevauchement */
  margin-top: 4rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-left h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn-contact {
  background: #000;
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background .3s;
}
.btn-contact:hover {
  background: #333;
}

.footer-logo {
  width: 180px;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.social-icons img {
  width: 32px;
  transition: transform .3s;
}
.social-icons img:hover {
  transform: scale(1.2);
}

.footer-info p {
  margin: .5rem 0;
  font-size: .9rem;
}

.footer-legal {
  width: 100%;
  text-align: center;
  font-size: .85rem;
  color: #555;
  margin-top: 2rem;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  position: static;
}

.footer-legal a {
  color: #555;
  text-decoration: none;
  margin: 0 .25rem;
}
.footer-legal a:hover {
  text-decoration: underline;
}

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


.footer-info a {
  color: inherit;
  text-decoration: none;
}
.footer-info a:hover {
  text-decoration: underline;
}
/* ==============================
   Footer
   ============================== */
footer {
  background-color: var(--light);
  padding: 2rem 1rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}
.footer-links {
  list-style: none;
  display: inline-flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-links a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: #dc9b1f;
}