/* =============================================
   footer.css — Site footer
   ============================================= */

.site-footer {
  position: relative;
  padding: 80px 1.5rem 40px;
  z-index: 2;
}

.footer-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191,90,242,0.2), rgba(201,162,39,0.2), transparent);
  margin-bottom: 4rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Brand column */
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
  text-decoration: none;
}

.footer-logo-wrap {
  position: relative;
  width: 40px; height: 40px;
}

.footer-logo-glow {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,90,242,0.3), rgba(201,162,39,0.15));
  filter: blur(8px);
  animation: logoBreath 5s ease-in-out infinite;
}

.footer-logo-img {
  position: relative;
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 4px rgba(191,90,242,0.3));
}

.footer-brand-name {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #ffffff, #BF5AF2, #C9A227);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(160,160,192,0.6);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.8rem;
}

/* Social buttons */
.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.2s;
}

.social-btn:hover { transform: translateY(-2px); }

.social-discord {
  background: rgba(191,90,242,0.08);
  border: 1px solid rgba(191,90,242,0.22);
  color: #BF5AF2;
}
.social-discord:hover { box-shadow: 0 0 14px rgba(191,90,242,0.35); }

.social-twitter {
  background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.22);
  color: #C9A227;
}
.social-twitter:hover { box-shadow: 0 0 14px rgba(201,162,39,0.35); }

.social-github {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
}
.social-github:hover { box-shadow: 0 0 14px rgba(255,255,255,0.12); color: #fff; }

/* Link columns */
.footer-col-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #BF5AF2;
  margin-bottom: 1.2rem;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col-links a {
  font-size: 0.85rem;
  color: rgba(160,160,192,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col-links a:hover { color: #fff; }

/* Bottom bar */
.footer-bottom-divider {
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: rgba(160,160,192,0.35);
  letter-spacing: 0.05em;
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(160,160,192,0.4);
}

.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #30D158;
  animation: statusBlink 3s ease-in-out infinite;
}

.footer-love {
  font-size: 0.72rem;
  color: rgba(160,160,192,0.3);
}

@keyframes statusBlink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.3; }
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}