/* ---------- FOOTER ---------- */
.site-footer {
  background: #222; /* dark elegant background */
  color: #ddd;
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer p {
  margin: 0.5rem 0;
}

.site-footer a {
  color: #b8860b; /* gold accent */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .site-footer {
    font-size: 0.9rem;
    padding: 1.2rem 0.8rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    font-size: 0.85rem;
    padding: 1rem 0.6rem;
  }
}