/* ==========================================================================
   PIED DE PAGE (FOOTER)
   ========================================================================== */

.site-footer {
  background-color: #1a1614; /* Marron très foncé / Noir */
  color: #ffffff;
  padding: 80px 50px 30px 50px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* --- HAUT DU FOOTER --- */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr; /* Le slogan prend 2 fois plus de place */
  gap: 60px;
  margin-bottom: 60px;
}

.slogan-col h2 {
  font-family: var(--font-main);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  color: #ffffff;
}

.footer-col h3 {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #d1cfcd; /* Gris clair */
  margin-bottom: 25px;
}

/* Réseaux sociaux */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #ffffff;
  color: #1a1614;
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.social-text span {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

/* Contact */
.footer-email {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #d1cfcd;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 3px;
  margin-bottom: 25px;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}

.footer-email:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.footer-phone {
  font-family: var(--font-main) !important;
  font-size: 24px !important;
  color: #ffffff !important;
  margin-bottom: 30px !important;
}

.footer-charte {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #d1cfcd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-charte:hover {
  color: #ffffff;
}

/* --- LIGNE SÉPARATRICE --- */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 0 30px 0;
}

/* --- BAS DU FOOTER --- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  font-family: var(--font-main);
  font-size: 17px;
  color: #d1cfcd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.kebab-menu a {
  font-weight: bold;
  letter-spacing: 2px;
}

.footer-copy-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-copy {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #999999;
  margin: 0;
}

/* Bouton Retour en Haut */
.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #272321;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.back-to-top:hover {
  background-color: #3b3532;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .slogan-col h2 {
    font-size: 42px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 15px 30px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 30px 30px 30px;
  }
  .slogan-col h2 {
    font-size: 36px;
  }
}
