/* Footer-specific styles for Social Fun Venue */

.sfv-footer {
  position: relative;
  color: #e5e7eb;
}

.sfv-footer__top {
  gap: var(--space-32);
}

.sfv-footer__brand-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sfv-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sfv-footer__logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 20%, #fef3c7, #fbbf24);
  box-shadow: 0 8px 20px rgba(250, 204, 21, 0.65);
}

.sfv-footer__brand-text {
  display: flex;
  flex-direction: column;
}

.sfv-footer__brand-title {
  font-family: var(--font-display);
  font-weight: 600;
}

.sfv-footer__brand-subtitle {
  font-size: 0.8rem;
  color: var(--color-neutral-300);
}

.sfv-footer__description {
  font-size: 0.9rem;
  color: var(--color-neutral-200);
}

.sfv-footer__heading {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.sfv-footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.sfv-footer__links a {
  color: var(--color-neutral-200);
}

.sfv-footer__links a:hover {
  color: #fff !important;
}

.sfv-footer__links--contact span {
  color: var(--color-neutral-300);
}

.sfv-footer__social {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.sfv-footer__social-link {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.8);
  color: var(--color-neutral-200);
  font-size: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  transition: background var(--transition-normal), transform var(--transition-fast), box-shadow var(--transition-normal);
}

.sfv-footer__social-link:hover {
  background: rgba(251, 191, 36, 0.25);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.6);
  transform: translateY(-1px);
}

.sfv-footer__bottom {
  color: var(--color-neutral-400);
}

.sfv-footer__note {
  color: var(--color-neutral-400);
}

@media (max-width: 768px) {
  .sfv-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Cookie banner */

.sfv-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.sfv-cookie__inner {
  max-width: 960px;
  width: 100%;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  padding: 12px 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.65);
  pointer-events: auto;
}

.sfv-cookie__title {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: white;
}

.sfv-cookie__description {
  font-size: 0.8rem;
  color: var(--color-neutral-300);
}

.sfv-cookie__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.sfv-cookie__btn {
  font-size: 0.8rem;
  padding: 8px 14px;
}

.sfv-cookie__btn--reject {
  background: transparent;
  color: white;
}

.sfv-cookie__btn--accept {
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.55);
}

.sfv-cookie[data-visible="true"] {
  animation: sfv-cookie-slide-in 260ms ease-out forwards;
}

.sfv-cookie[data-visible="false"] {
  animation: sfv-cookie-slide-out 220ms ease-in forwards;
}

@keyframes sfv-cookie-slide-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes sfv-cookie-slide-out {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(100%); opacity: 0; }
}

@media (max-width: 720px) {
  .sfv-cookie__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sfv-cookie__actions {
    width: 100%;
    justify-content: flex-end;
  }
}
