.site-footer {
  background-color: var(--primary-color);
  color: var(--background-color);
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  flex: 1 1 auto;
}

.footer-right {
  flex: 1 1 auto;
  text-align: right;
}

.footer-right a {
  color: var(--background-color);
  margin-left: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: var(--hover-color);
}

/* Responsive: pada layar kecil, stack */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-right {
    margin-top: 1rem;
    text-align: center;
  }
  .footer-right a {
    margin: 0 0.5rem;
  }
}