@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateY(-12px);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.reveal-line {
  overflow: hidden;
}

.reveal-line > span {
  display: inline-block;
}

.lux-hover {
  position: relative;
}

.lux-hover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 154, 98, 0.18), transparent 44%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.lux-hover:hover::before {
  opacity: 1;
}

.image-parallax {
  will-change: transform;
}

.soft-float {
  animation: softFloat 5.5s ease-in-out infinite;
}

.fade-up-init {
  opacity: 0;
  transform: translateY(26px);
}

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