/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://elementor.com/
 Description:  Child theme for Hello Elementor
 Author:       Your Name
 Author URI:   https://example.com
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/

/* Your custom styles go below */
/* Preloader background */
/* Preloader styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Wave animation container */
#wave-loader {
    display: flex;
    gap: 4px; /* space between waves */
}

/* Each wave */
.wave {
    width: 6px;      /* smaller width */
    height: 40px;    /* smaller height */
    background-color: #FD8E72; /* new color */
    animation: waveAnim 1.4s infinite ease-in-out; /* slower speed */
    border-radius: 4px;
}

/* Delay each wave for the ripple effect */
.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 0.2s; }
.wave:nth-child(3) { animation-delay: 0.4s; }
.wave:nth-child(4) { animation-delay: 0.6s; }
.wave:nth-child(5) { animation-delay: 0.8s; }
.wave:nth-child(6) { animation-delay: 1s; }
.wave:nth-child(7) { animation-delay: 1.2s; }

/* Animation keyframes */
@keyframes waveAnim {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
    }
}

