/*
 Theme Name:   Kadence SoundSense
 Theme URI:    https://www.liquidweb.com/help-docs/software/kadence/
 Description:  Kadence Child Theme
 Author:       SoundSense Tech Solutions
 Author URI:   https://soundsense.net
 Template:     kadence
 Version:      1.0.2
 Tags:         customizable, modern, responsive-layout, gutenberg, header builder, footer builder
 Text Domain:  kadencesoundsense
*/

/* Theme customization starts here
-------------------------------------------------------------- */

/* Animation code for desktop */

/* 1. Add your custom class name to the Advanced CSS Classes field of your block: custom-text-entrance */

.custom-text-entrance {
  /* Continuous looping animation using ease-in-out */
  animation: continuousFloat 4s ease-in-out infinite;
}

/* 2. Define the smooth, alternating loop path */
@keyframes continuousFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px); /* Smoothly drifts up 15px */
  }
  100% {
    transform: translateY(0px); /* Smoothly returns to start */
  }
}

