.site-footer {
  background-color: var(--color-dark-bg);
  color: var(--color-lightgray);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  border-top: 1px solid var(--color-lightgray);
  backdrop-filter: 10px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-button {
    justify-content: center;
  }
}
