/**
 * #.# Footer
 *
 * Matches stableangel.com: a cream "gold" surface footer (not a dark
 * one), 4-column grid, bottom bar with copyright.
 */

.site-footer {
  background-color: var(--gold);
  color: var(--gold-foreground);
  padding: 64px 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo img {
  max-height: 48px;
  width: auto;
}

.footer-logo__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.footer-logo__text {
  font-family: var(--header);
  font-size: 1.25rem;
  font-weight: 700;
}

.site-footer__description {
  max-width: 24rem;
  color: rgba(26, 26, 26, .7);
  margin-bottom: 1.5rem;
}

.site-footer__made-in {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.site-footer h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-menu-container ul,
.site-footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-container ul li,
.site-footer .footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu-container ul li a,
.site-footer .footer-menu li a,
.site-footer .footer-menu li {
  color: rgba(26, 26, 26, .7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-menu-container ul li a:hover {
  color: var(--gold-foreground);
}

.site-footer .social-links {
  display: flex;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer .social-links li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--black);
  background-color: var(--white);
  transition: var(--transition);
}

.site-footer .social-links li a:hover {
  background-color: var(--primary);
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 26, 26, .1);
}

.site-footer__copyright,
.site-footer__credit {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(26, 26, 26, .5);
}

.site-footer__credit a {
  color: rgba(26, 26, 26, .5);
  border-bottom: 1px solid rgba(26, 26, 26, .2);
}

.site-footer__credit a:hover {
  color: var(--gold-foreground);
  border-bottom-color: var(--gold-foreground);
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .site-footer__about {
    grid-column: span 2;
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
