/* =========================================================
   SALT & PEPPER FUSION — Animations
   Content is ALWAYS visible — animations only enhance
   ========================================================= */

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.9; }
}

@keyframes loaderBar {
  0% { width: 0%; }
  100% { width: 100%; }
}

@keyframes scrollBounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.4; transform: translateX(-50%) translateY(10px); }
}

@keyframes floatLeaf {
  0%, 100% { transform: rotate(45deg) translateY(0) translateX(0); }
  33% { transform: rotate(55deg) translateY(-20px) translateX(10px); }
  66% { transform: rotate(35deg) translateY(10px) translateX(-8px); }
}

@keyframes goldRipple {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4);
  }
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Soft scroll enhance — NEVER hide content as default state */
.reveal-on-scroll {
  opacity: 1;
  transform: none;
}

.hover-lift {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(36, 65, 46, 0.14);
}

.text-shimmer {
  background: linear-gradient(
    90deg,
    var(--olive) 0%,
    var(--gold) 40%,
    var(--gold-champagne) 50%,
    var(--gold) 60%,
    var(--olive) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .floating-leaf,
  .loader-logo,
  .scroll-mouse span {
    animation: none !important;
  }

  .js-ready .reveal-on-scroll:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}
