/* ========================================
   PAHB - Footer
   ======================================== */

.footer {
  background: var(--gradient-header);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-lg);
  text-align: center;
  margin-top: auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.footer-logo {
  width: 80px;
  height: auto;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-gold-light);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-lg);
}

.footer-links a {
  color: var(--color-white);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold-light);
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.9;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255,255,255,0.2);
}
