/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 30px;
  height: 30px;
  background-image: url("/assets/img/cursor/broom-cleaning-svgrepo-com.svg");
  background-size: cover;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 0.1s ease, width 0.1s ease, height 0.1s ease;
  z-index: 10000;
}

/* Animation for Broom Sweeping */
@keyframes sweep {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(10px) rotate(-20deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}

.custom-cursor.sweeping {
  animation: sweep 1s alternate-reverse infinite;
}

body {
  cursor: none;
}


/* Dust Particle */
.dust {
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
  animation: dust-animation 0.5s forwards;
  z-index: 10000;
}

@keyframes dust-animation {
  to {
    transform: translateY(-20px) translateX(20px);
    opacity: 0;
  }
}