/* Footer-specific styles for Romania Event Hub */

.rehub-footer {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 55%),
              #020617;
}

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

.rehub-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rehub-footer__logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #e0f2fe, transparent 55%),
              linear-gradient(135deg, #1d4ed8, #38bdf8);
}

.rehub-footer__title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin: 0 0 0.25rem;
}

.rehub-footer__subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.78);
}

.rehub-footer__grid {
  display: grid;
  gap: var(--space-24);
}

@media (min-width: 768px) {
  .rehub-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.rehub-footer__heading {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: #e5e7eb;
}

.rehub-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rehub-footer__list li + li {
  margin-top: 0.4rem;
}

.rehub-footer__list a {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.85);
}

.rehub-footer__list a:hover {
  color: #e0f2fe;
}

.rehub-footer__column--contact .rehub-footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rehub-footer__contact-list i {
  color: #38bdf8;
}

.rehub-footer__contact-list span,
.rehub-footer__contact-list a {
  font-size: 0.9rem;
}

.rehub-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid rgba(51, 65, 85, 0.85);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.rehub-footer__copy {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
}

.rehub-footer__age {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
}

@media (min-width: 768px) {
  .rehub-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Cookie banner */
.rehub-cookie {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem;
  background: transparent;
  pointer-events: none;
}

.rehub-cookie__inner {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.98);
  color: #e5e7eb;
  border-radius: 1rem;
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  pointer-events: auto;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.rehub-cookie--visible .rehub-cookie__inner {
  opacity: 1;
  transform: translateY(0);
}

.rehub-cookie__title {
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
  color: #f9fafb;
}

.rehub-cookie__description {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  color: rgba(209, 213, 219, 0.95);
}

.rehub-cookie__link {
  font-size: 0.8rem;
  color: #bae6fd;
  text-decoration: underline;
}

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

.rehub-cookie__btn {
  font-size: 0.85rem;
  padding-inline: 1.1rem;
  padding-block: 0.55rem;
}

@media (min-width: 640px) {
  .rehub-cookie__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.3rem;
  }

  .rehub-cookie__text {
    max-width: 70%;
  }
}

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