/* Footer */
.footer {
  background: #1e2833;
  padding: 60px 0;
  color: white;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

/* Logo et titre */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.footer-logo-img {
  height: 50px;
  width: auto;
}

.footer-title {
  font-family: "Amallicita", cursive;
  font-size: 35px;
  font-weight: 400;
  color: #ffd58e;
  margin: 0;
  letter-spacing: 1px;
}

/* Navigation footer */
.footer-nav-list {
  display: flex;
  list-style: none;
  gap: 60px;
  margin: 0;
  padding: 0;
}

.footer-nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "GillSansMTPro-Light", sans-serif;
  transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
  opacity: 0.7;
}

/* Réseaux sociaux */
.footer-socials {
  display: flex;
  gap: 20px;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.social-link:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0;
  }

  .footer-content {
    gap: 25px;
  }

  .footer-nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav-link {
    font-size: 14px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-logo-img {
    height: 40px;
  }
}
