﻿/* ===================================================
   BOUYA PAPY — footer.css
   =================================================== */

/* ---- Footer principal ---- */
.site-footer {
  background: #070D1A;
  color: rgba(255,255,255,.6);
  padding: 72px 0 0;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white, #fff);
  margin-bottom: 12px;
}
.footer-logo-img {
  width: 30px; height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold, #C9A227);
  flex-shrink: 0;
}
.footer-tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
  letter-spacing: .04em;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  transition: .2s ease;
}
.footer-social a:hover {
  background: var(--blue-mid, #2563EB);
  border-color: var(--blue-mid, #2563EB);
  color: #fff;
  transform: translateY(-2px);
}
.footer-social-top {
  width: auto !important;
  padding: 0 14px;
  background: var(--gold, #C9A227) !important;
  border-color: var(--gold, #C9A227) !important;
  color: #0a0a0a !important;
  font-size: .75rem !important;
  font-weight: 800 !important;
  letter-spacing: .03em;
  white-space: nowrap;
}
.footer-social-top:hover {
  background: #e0b830 !important;
  border-color: #e0b830 !important;
  transform: translateY(-2px);
}
.footer-links-col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col a {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  transition: color .2s ease;
}
.footer-links-col a:hover {
  color: var(--gold, #C9A227);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}


