/* Reusable Animation Classes & Keyframes */

.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--pure-white) 0%,
    var(--pure-white) 40%,
    var(--golden-fry) 50%,
    var(--pure-white) 60%,
    var(--pure-white) 100%
  );
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: -200% center;
  }
}

.float {
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Utilities */
.hidden {
  display: none !important;
}

/* Footer */
.footer {
  background-color: #080808;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-logo {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--pure-white);
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--golden-fry);
}

.footer-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.footer-nexus {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

.footer-nexus span {
  color: #fff;
  font-weight: bold;
}
