/* ============================================================
   FFG.ro — Footer
   ============================================================ */

.site-footer {
  background: #0D0C09;
  border-top: 1px solid rgba(184, 150, 62, 0.15);
}

.footer__body {
  padding-block: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

/* Brand column */
.footer__brand-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);   /* was 0.40 — necitibil */
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__brand-logo strong {
  font-weight: 400;
  color: var(--gold-light, #D4B96A);
}

.footer__brand-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);   /* was 0.25 — aproape invizibil */
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 150, 62, 0.3);
  color: rgba(255, 255, 255, 0.6);    /* was 0.35 */
  font-size: 14px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer__social a:hover {
  border-color: var(--gold, #B8963E);
  color: var(--gold-light, #D4B96A);
}

/* Nav columns */
.footer__col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light, #D4B96A);  /* mai luminos decât #B8963E pe fond negru */
  margin-bottom: 1.25rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer__nav a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);   /* was 0.30 — necitibil */
  text-decoration: none;
  transition: color 0.2s ease;
  letter-spacing: 0.02em;
}

.footer__nav a:hover {
  color: var(--gold-light, #D4B96A);
}

/* Footer bottom bar */
.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);   /* was 0.18 — invizibil */
  letter-spacing: 0.02em;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer__legal a {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);   /* was 0.20 — invizibil */
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: var(--gold-light, #D4B96A);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bar {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}
