/* Custom Styles for Maranatha 104.5 FM */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,400&family=Dancing+Script:wght@600;700&display=swap');

.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-dancing {
    font-family: 'Dancing Script', cursive;
}

/* Waveform Animation */
@keyframes waveAnimation {
    0%, 100% {
        height: 6px;
    }
    50% {
        height: 24px;
    }
}

.wave-bar.playing {
    animation: waveAnimation 1.2s ease-in-out infinite;
}

.wave-bar.playing:nth-child(1) { animation-delay: 0.1s; }
.wave-bar.playing:nth-child(2) { animation-delay: 0.3s; }
.wave-bar.playing:nth-child(3) { animation-delay: 0.5s; }
.wave-bar.playing:nth-child(4) { animation-delay: 0.2s; }
.wave-bar.playing:nth-child(5) { animation-delay: 0.4s; }
.wave-bar.playing:nth-child(6) { animation-delay: 0.6s; }
.wave-bar.playing:nth-child(7) { animation-delay: 0.15s; }
.wave-bar.playing:nth-child(8) { animation-delay: 0.35s; }

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
}
