/* ==========================================================================
   FOOTER.CSS — Pied de page du thème Sunshine Solar
   ========================================================================== */


/* =====================================================
   SECTION GLOBALE FOOTER
   ----------------------------------------------------- */

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
  font-size: 0.95rem;
  color: #6b7280;
}


/* =====================================================
   GRILLE PRINCIPALE DU FOOTER
   ----------------------------------------------------- */

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   TITRES DES COLONNES
   ----------------------------------------------------- */

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111827;
}


/* =====================================================
   LISTES DE LIENS
   ----------------------------------------------------- */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f97316;
}


/* =====================================================
   LOGO + DESCRIPTION
   ----------------------------------------------------- */

.footer-logo img {
  height: 72px;
  margin-bottom: 0.8rem;
}

.footer-about {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.55;
}


/* =====================================================
   RESEAUX SOCIAUX
   ----------------------------------------------------- */

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  background: #f97316;
  color: #ffffff;
}


/* =====================================================
   COPYRIGHT FINAL
   ----------------------------------------------------- */

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.9rem;
}
