/* ==============================================================
   footer-public.css – MCinspir (bloc centré + fond doux contrasté)
   ============================================================== */

/* Pied de page : fond crème doux distinct du body blanc */
.site-footer {
  background-color: #fcf7f0 !important;
  border-top: 3px solid var(--gold) !important;
  color: var(--text) !important;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

/* Conteneur interne centré */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Bloc logo + © */
.footer-left-block {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Logo */
.footer-logo {
  width: 46px;
  height: auto;
}

/* Texte © : pas de retour à la ligne */
.footer-infos {
  margin: 0;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--text) !important;
}

/* Lettre dorée */
.highlight {
  color: var(--gold) !important;
}

/* Tiret admin : jamais souligné */
.admin-link {
  color: var(--gold) !important;
  text-decoration: none !important;
  margin-left: 0.4rem;
  position: relative;
  top: -1px;
}
.admin-link:hover {
  text-decoration: none !important;
}

/* Liens sous le bloc centré */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* Style de chaque lien */
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0;                   /* espace géré manuellement */
  color: var(--text) !important;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

/* Séparateurs */
.separator {
  color: var(--gold) !important;
  user-select: none;
}

/* Icônes sociales (Facebook, Terapiz…) */
.social-icon {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: auto;
  margin-right: 0.4rem;
}

/* =============================
   Spécifique au lien Facebook
   ============================= */
.facebook-link {
  display: inline-flex;
  align-items: center;
  color: var(--text) !important;
  text-decoration: none;
}
.facebook-link:hover {
  text-decoration: underline !important;
  text-decoration-skip-ink: none !important;
}

.facebook-part-1 {
  display: inline;
  margin: 0;
}

/* Espace après "Suivre sur" et couleur bleue pour "facebook" */
.facebook-part-2 {
  display: inline;
  margin: 0;
  margin-left: 0.25rem;
  color: #0861F2 !important;
}

/* Texte du lien Terapiz en #00B9FE */
.terapiz-text {
  color: #00B9FE !important;
  font-weight: 500;
}
.terapiz-link:hover .terapiz-text {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

/* « Tous droits réservés » */
.rights {
  white-space: nowrap;
}

/* Responsive < 600px : empilement */
@media (max-width: 600px) {
  .footer-inner {
    gap: 0.8rem;
  }
  .footer-infos {
    font-size: 0.9rem;
  }
}
