/* ═══════════════════════════════════════════════════════════
   MXTV TV — Animated Footer Styles
   Concept: Modern Luxury Muslim Sci-Fi Gaming
   ═══════════════════════════════════════════════════════════ */

/* The footer now has a canvas layer behind the content */
.site-footer {
  position: relative;
  overflow: hidden;
  background: #000;
  border-top: none;
  padding: 0;
  margin-top: auto;
  min-height: 160px; /* ensures canvas has real height */
}

/* Canvas fills the entire footer area */
#footer-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 160px;
  display: block;
  z-index: 0;
}

/* Footer content sits above the canvas */
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* Ensure text remains readable over the animation */
.footer-brand .logo-main,
.footer-brand .logo-sub {
  text-shadow: 0 0 12px rgba(0,0,0,0.8);
}

.footer-tagline {
  text-shadow: 0 0 8px rgba(0,0,0,0.9);
}

.footer-nav a,
.footer-copy {
  text-shadow: 0 0 6px rgba(0,0,0,0.9);
}

/* Responsive: taller footer on mobile so animation has room */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 16px;
  }
  .footer-copy {
    margin-left: 0;
  }
}
