/*
  BRIX Special Animation - Glide Logo Float
  ----------------------------------------------------------------------------
  Native replacement for Webflow IX2 "🔄 Logo Rotate - Agency" (a-252).
  The floating Glide logo in the hero gently rotates between -6deg and +6deg
  in a continuous loop (1.5s per swing → 3s full cycle), matching the original.

  The logo image is reveal-managed as transform-managed (fade + blur only),
  so this animation owns the `transform` channel without fighting the reveal.
*/

.glide-logo.brix-special-glide-logo {
  transform-origin: center center;
  will-change: transform;
  animation: brix-glide-logo-rotate 1.5s ease-in-out infinite alternate;
}

@keyframes brix-glide-logo-rotate {
  from {
    transform: rotate(-6deg);
  }

  to {
    transform: rotate(6deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .glide-logo.brix-special-glide-logo {
    animation: none;
    transform: none;
  }
}
