/* Site footer */
.site-footer {
  position: relative;
  z-index: 10;
  padding: 3rem 1.5rem 2rem;
  pointer-events: auto;
  border-top: 1px solid rgba(232, 90, 120, 0.08);
  background: rgba(10, 10, 14, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  padding-bottom: 2rem;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.footer-logo {
  display: block;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.55rem;
  background: rgba(22, 22, 28, 0.9);
  border: 1px solid rgba(232, 90, 120, 0.12);
  color: var(--text);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.footer-social-btn:hover {
  border-color: rgba(232, 90, 120, 0.35);
  background: rgba(30, 28, 34, 0.95);
  transform: translateY(-1px);
}

.footer-divider {
  height: 1px;
  background: rgba(232, 90, 120, 0.1);
  margin-bottom: 1.25rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy,
.footer-status {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 10px rgba(61, 220, 132, 0.65);
  animation: footer-pulse 2s ease-in-out infinite;
}

@keyframes footer-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 2.5rem 1rem 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

html.reduce-effects .footer-status-dot {
  animation: none;
}
