/* Footer-specific styles for Urban Club Venue */

.footer-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.footer-brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #fdf7ea, #cba36c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: #1e232e;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-brand-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.footer-brand-subtitle {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-8);
}

.footer-column {
  min-width: 0;
}

.footer-heading {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--color-text-soft);
}

.footer-links a:hover {
  color: #fff !important;
}

.footer-contact-label {
  font-weight: 500;
  font-size: 0.85rem;
  margin-right: 0.35rem;
}

.footer-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
}

.footer-legal-links a {
  font-size: 0.8rem;
}

.footer-disclaimer {
  margin-top: var(--space-3);
  font-size: 0.8rem;
  max-width: 50rem;
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-overlay);
  padding: var(--space-3) var(--space-4);
  background: transparent;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(34, 38, 48, 0.97), rgba(48, 52, 64, 0.98));
  color: #f5eee3;
  border-radius: var(--radius-lg);
  box-shadow: 0 -14px 40px rgba(0, 0, 0, 0.35);
  padding: var(--space-4) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transform: translateY(120%);
  opacity: 0;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.cookie-banner--visible .cookie-banner__inner {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.cookie-banner__description {
  font-size: 0.85rem;
  color: #e6ddcf;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.cookie-btn {
  border-radius: var(--radius-pill);
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-btn--primary {
  background: linear-gradient(135deg, #d8b481, #cba36c);
  border-color: rgba(203, 163, 108, 0.9);
  color: #1f222b;
}

.cookie-btn--primary:hover {
  background: linear-gradient(135deg, #e0bf90, #d2ae78);
}

.cookie-btn--secondary {
  background: rgba(250, 247, 241, 0.04);
  border-color: rgba(245, 239, 231, 0.5);
  color: #f5eee3;
}

.cookie-btn--secondary:hover {
  background: rgba(250, 247, 241, 0.12);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner__inner {
    transition: none;
  }
}
