/**
 * Pied de page minimal — une seule ligne
 */
body.rfp-public {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

body.rfp-public .rfp-app {
  flex: 1 0 auto;
  width: 100%;
}

body.rfp-public footer.rfp-site-footer--minimal {
  flex-shrink: 0;
  width: 100%;
  margin-top: auto;
  border-top: 1px solid rgba(0, 212, 255, 0.12);
  background: #060b14;
  padding: 14px clamp(12px, 3vw, 24px);
  padding-bottom: calc(14px + env(safe-area-inset-bottom));
  z-index: var(--rfp-z-footer, 20);
}

body.rfp-public .rfp-site-footer__line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  max-width: min(1920px, 100%);
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.5;
  color: #7a9bb8;
  text-align: center;
}

body.rfp-public .rfp-site-footer__copy {
  font-weight: 600;
  color: #a8c4dc;
}

body.rfp-public .rfp-site-footer__dot,
body.rfp-public .rfp-site-footer__sep {
  color: rgba(255, 255, 255, 0.2);
  user-select: none;
}

body.rfp-public .rfp-site-footer__line a {
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.15s;
}

body.rfp-public .rfp-site-footer__line a:hover {
  color: #00d4ff;
}

body.rfp-public .rfp-site-footer__brand-mark {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #00d4ff;
}

/* Mobile / tablette : masquer le pied de page (copyright, Congo Soft Services) */
@media (max-width: 991px) {
  body.rfp-public footer.rfp-site-footer--minimal {
    display: none !important;
  }
}
