/*
 Theme Name: Hello Elementor Child
 Template: hello-elementor
 Description: A child theme for Hello Elementor
 Version: 1.0
 Author: Elementor Team
 Text Domain: hello-elementor-child
*/

@keyframes colorFlicker {
  0%, 100% { color: #FFF1DB; }
  50%       { color: #F3E446; }
}

.flicker-btn .elementor-button-text {
  animation: colorFlicker 0.8s ease-in-out infinite;
}

@media (min-width: 1025px) {
/* Custom Cursor */
* { cursor: none !important; }

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 204px;
  height: 204px;
  background-image: url('https://lentedag.co.za/wp-content/uploads/2026/05/Cursor-normal.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 99999;
}

#custom-cursor.is-clicking {
  background-image: url('https://lentedag.co.za/wp-content/uploads/2026/05/Cursor-clicking.png');
}
}