/* Footer styles specific to NEON VENUE HOUSE */

.nvh-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--space-40);
  padding-bottom: var(--space-24);
  background: linear-gradient(to bottom, rgba(5, 7, 20, 0.9), rgba(0, 0, 0, 0.95));
}

.nvh-footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-32);
}

.nvh-footer__brand {
  max-width: 26rem;
}

.nvh-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}

.nvh-footer__logo span {
  color: var(--color-primary);
}

.nvh-footer__tagline {
  font-size: var(--text-sm);
}

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

.nvh-footer__heading {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.75rem;
}

.nvh-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.nvh-footer__link {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.nvh-footer__link:hover {
  color: #fff !important;
}

.nvh-footer__text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.nvh-footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.nvh-footer__social-link {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  background: rgba(5, 7, 20, 0.7);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
}

.nvh-footer__social-link:hover {
  color: #fff !important;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-neon-primary);
}

.nvh-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  padding-top: var(--space-24);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nvh-footer__copy {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.nvh-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.nvh-footer__separator {
  color: var(--color-text-muted);
}

/* Cookie banner */

.nvh-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.75rem var(--space-16) 1rem;
  background: radial-gradient(circle at top left, rgba(255, 0, 122, 0.2), rgba(5, 7, 20, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.85);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-slow), opacity var(--transition-base);
}

.nvh-cookie--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nvh-cookie--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.nvh-cookie__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.nvh-cookie__content {
  flex: 1 1 auto;
}

.nvh-cookie__title {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.nvh-cookie__text {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.nvh-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nvh-cookie__btn {
  font-size: 0.75rem;
  padding-inline: 1.1rem;
  white-space: nowrap;
}

.nvh-cookie__btn--reject {
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
  .nvh-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nvh-footer__grid {
    grid-template-columns: 1fr;
  }

  .nvh-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .nvh-cookie__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nvh-cookie__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .nvh-cookie__btn {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nvh-footer {
    padding-top: var(--space-32);
  }

  .nvh-footer__logo {
    font-size: 0.85rem;
  }

  .nvh-cookie {
    padding-inline: 0.75rem;
  }
}
