.grand-opening-heading {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.5px;

  /* shimmer effect */
  background: linear-gradient(90deg, #4c1a58 0%, #e0b8f0 25%, #4c1a58 50%, #e0b8f0 75%, #4c1a58 100%);
  background-size: 200% auto;
  color: #4c1a58; /* fallback */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: shimmer 4s linear infinite, pulse 3s ease-in-out infinite;
}

.grand-opening-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 8px auto 0;
  background: linear-gradient(90deg, #4c1a58, #e0b8f0);
  border-radius: 2px;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}