/*
 Theme Name:   Kadence Child
 Theme URI:    https://waywardwitchery.com/
 Description:  Child theme for the Kadence Theme
 Author:       Scaramey
 Author URI:   https://scaramey.com/
 Template:     kadence
 Version:      1.0.0
*/

/* Your custom CSS goes below */
body {
  cursor: url('/wp-content/themes/kadence-child/media/wand.png'), auto; 

}

/* Sparkle style */
.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, white 0%, gold 60%, transparent 100%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 1;
  animation: fadeOut 0.8s forwards;
}

/* Fade + shrink */
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(0.3);
  }
}

