/* ===================================
   FOOTER ENHANCED
   Lyria-inspired footer with marquee texture
   =================================== */

.footer-enhanced {
  position: relative;
  background: #050710;
  color: #ffffff;
  padding: 8rem 0 3rem;
  overflow: hidden;
}

/* Footer Marquee Background Texture */
.footer-enhanced__marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.footer-enhanced__marquee-content {
  position: absolute;
  top: 20%;
  left: 0;
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marqueeScrollFooter 40s linear infinite;
}

.footer-enhanced__marquee-content span {
  font-family: 'Anton SC', 'Bebas Neue', sans-serif;
  font-size: 15vw;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.05;
  line-height: 1;
  text-transform: uppercase;
}

@keyframes marqueeScrollFooter {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Inner Container */
.footer-enhanced__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 1;
}

/* Brand Section */
.footer-enhanced__brand {
  margin-bottom: 5rem;
}

.footer-enhanced__logo {
  font-family: 'Anton SC', 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}

/* Link Columns */
.footer-enhanced__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 6rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-enhanced__column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-enhanced__column-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem 0;
}

.footer-enhanced__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-enhanced__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.6;
}

.footer-enhanced__link:hover {
  color: #4d65ff;
}

/* Bottom Bar */
.footer-enhanced__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-enhanced__copyright,
.footer-enhanced__location {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet (4-col → 2-col) */
@media (max-width: 768px) {
  .footer-enhanced {
    padding: 6rem 0 2rem;
  }

  .footer-enhanced__brand {
    margin-bottom: 4rem;
  }

  .footer-enhanced__logo {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .footer-enhanced__columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
  }

  .footer-enhanced__marquee-content span {
    font-size: 20vw;
  }
}

/* Mobile (2-col → 1-col) */
@media (max-width: 480px) {
  .footer-enhanced {
    padding: 4rem 0 2rem;
  }

  .footer-enhanced__inner {
    padding: 0 1.5rem;
  }

  .footer-enhanced__brand {
    margin-bottom: 3rem;
  }

  .footer-enhanced__logo {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .footer-enhanced__columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }

  .footer-enhanced__column {
    gap: 1.25rem;
  }

  .footer-enhanced__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .footer-enhanced__marquee-content span {
    font-size: 25vw;
  }
}

/* Top border glow */
.footer-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 101, 255, 0.5), transparent);
  z-index: 2;
}
