/**
Theme Name: Evntiful
Author: Johnnybits Technology
Author URI: https://johnnybits.com
Description: Astra child theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: evntiful
Template: astra
*/

.underline{
    text-decoration: underline; 
} 
.decoration-wavy{
    text-decoration-style: wavy; 
} 
.underline-offset-8{
    text-underline-offset: 8px; 
}

 .hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.bg-overlay {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-container{
    overflow-x: hidden;
    display:flex;
    position: relative;
}
.animate-marquee {
    white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee-container:hover .animate-marquee {
  animation-play-state: paused;
}

.text-brand{
    color: var(--ast-global-color-0) !important;
}