/* Sophisticated fine art hero animation styles */
.title-wrapper {
  position: relative;
  overflow: hidden;
  transition: all 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
  border-radius: 2px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  background-size: 200% 200%;
  background-position: center;
}

.seeking-text {
  font-weight: 300;
  letter-spacing: 0.18em;
}

.seeking-letter {
  display: inline-block;
  transform-origin: center;
  transition: color 1.8s cubic-bezier(0.25, 0.1, 0.25, 1), 
              text-shadow 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.divider-element {
  display: inline-block;
  transform-origin: center;
  font-weight: 200;
  color: rgba(255, 50, 50, 0.9);
  margin: 0 0.25em;
  transition: all 1.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.light-text {
  font-weight: 300;
  letter-spacing: 0.18em;
}

.light-letter {
  display: inline-block;
  transform-origin: center;
  position: relative;
  transition: color 1.8s cubic-bezier(0.25, 0.1, 0.25, 1), 
              text-shadow 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Refined hover effect */
.title-wrapper:hover {
  box-shadow: 
    0 0 45px rgba(0, 0, 0, 0.42),
    0 0 25px rgba(20, 10, 5, 0.15);
}

/* For prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .light-letter, .seeking-text, .divider-element, .title-wrapper {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* Hide default styles when JS runs */
.js-animation-active .animate-float {
  animation: none;
}
