/* FOOTER */
.footer {
  background: #0f0404;
  padding: 2.1875rem clamp(1rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
  border-top: 3px solid rgba(200, 120, 10, 0.3);
}

.footer-logo {
  font-family: 'Dancing Script', cursive;
  font-size: 1.75rem;
  color: var(--cream);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo span {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--cream-dark);
  opacity: 0.6;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 1.5625rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.8;
  transition: all .3s;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
