/**
 * Lumiere — luxury gold shimmer utilities (reused across pages)
 */

@keyframes goldShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes goldPulse {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
  }
  50% {
    box-shadow: 0 0 35px rgba(201, 169, 110, 0.6), 0 0 50px rgba(201, 169, 110, 0.3);
  }
}

.gold-shimmer-text {
  background: linear-gradient(90deg, B88A44 0%, #e8c98e 25%, #d4af37 50%, #e8c98e 75%, B88A44 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s linear infinite;
}

.gold-divider-shimmer {
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, #e8c98e, #d4af37, transparent);
  background-size: 200% 100%;
  animation: goldShimmer 3s linear infinite;
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.6);
}
