/* Shared Footer Styles */
.site-footer {
  padding: 3rem 1.5rem 2rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
  color: #fff;
  text-align: center;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer .footer-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.site-footer .footer-logo {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.site-footer .footer-logo:hover {
  opacity: 1;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.site-footer .footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  padding: 0.25rem 0;
}

.site-footer .footer-links a:hover {
  color: #d4a84b;
}

.site-footer .footer-copyright {
  color: #555;
  font-size: 0.8rem;
  margin: 0;
  margin-top: 0.5rem;
}

@media (max-width: 480px) {
  .site-footer {
    padding: 2rem 1rem 1.5rem;
  }

  .site-footer .footer-container {
    gap: 1rem;
  }

  .site-footer .footer-logo {
    height: 40px;
    max-width: 150px;
  }

  .site-footer .footer-links {
    gap: 0.4rem 1rem;
  }

  .site-footer .footer-links a {
    font-size: 0.8rem;
  }
}
