/* ── GLOBAL CUSTOM CURSOR ── */
*, *::before, *::after { cursor: none !important; }

#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 7px; height: 7px;
  background: #F17C1C;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s,
              background 0.3s ease,
              transform 0.18s cubic-bezier(0.34,1.56,0.64,1);
  will-change: left, top, transform;
}

#cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(241,124,28,0.48);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s,
              width  0.38s cubic-bezier(0.34,1.56,0.64,1),
              height 0.38s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.35s ease;
  will-change: left, top;
  animation: ringBreath 3.2s ease-in-out infinite;
}

/* Gentle pulsing breath when idle */
@keyframes ringBreath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(241,124,28,0); }
  50%       { box-shadow: 0 0 0 5px rgba(241,124,28,0.09); }
}

/* Hovering over links / buttons */
#cursor-ring.is-hovering {
  width: 46px;
  height: 46px;
  border-color: rgba(84,154,148,0.52);
  animation: none;
  box-shadow: none;
}
#cursor-dot.is-hovering {
  background: #549A94;
  transform: translate(-50%, -50%) scale(0.55);
}

/* Click press */
#cursor-ring.is-clicking {
  width: 24px;
  height: 24px;
  border-color: rgba(241,124,28,0.85);
  animation: none;
}
#cursor-dot.is-clicking {
  transform: translate(-50%, -50%) scale(1.5);
}

/* Paintbrush hero zone hides the ring/dot */
body.brush-active #cursor-dot,
body.brush-active #cursor-ring {
  opacity: 0 !important;
  transition: opacity 0.15s;
}

/* ── ALL ORANGE BUTTONS — animated orange shimmer ──
   Stays in the orange family — light → brand → deep → back.
   Gradient starts and ends on the same value so the loop is seamless. */
@keyframes orangeShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.btn-primary,
.nav-cta {
  background: linear-gradient(
    90deg,
    #F17C1C 0%,
    #F7962E 30%,
    #E86A10 55%,
    #F7962E 75%,
    #F17C1C 100%
  ) !important;
  background-size: 200% 100% !important;
  border-color: transparent !important;
  animation: orangeShimmer 3s linear infinite !important;
  transition: transform 0.18s ease, box-shadow 0.2s ease !important;
}
.btn-primary:hover,
.nav-cta:hover {
  opacity: 1 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(241, 124, 28, 0.4) !important;
}
