/* 
==================================================
   RS ATTUROTS - TAILWIND V3 - DOMINANT GREEN
================================================== 
*/

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Global SVG Grain Overlay for Premium Editorial Feel */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* Very subtle noise, low opacity to not dirty the beautiful green */
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Swiper Overrides (Optional, Tailwind handles most) */
.swiper-pagination-bullet {
    background: rgba(251, 249, 254, 0.5) !important;
}

.swiper-pagination-bullet-active {
    background: #81BA2F !important;
}

/* Glassmorphism utility for older browsers */
.glass-panel {
    background: rgba(19, 77, 37, 0.6);
    /* Dark Green translucent */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(251, 249, 254, 0.1);
}

/* Modern Live Equalizer Animation */
@keyframes eq {
    0% {
        transform: scaleY(0.4);
    }

    50% {
        transform: scaleY(1);
    }

    100% {
        transform: scaleY(0.4);
    }
}

.eq-bar {
    animation: eq 1s ease-in-out infinite;
    transform-origin: bottom;
}

.eq-bar:nth-child(1) {
    animation-delay: 0.1s;
    animation-duration: 0.8s;
}

.eq-bar:nth-child(2) {
    animation-delay: 0.3s;
    animation-duration: 1.1s;
}

.eq-bar:nth-child(3) {
    animation-delay: 0.0s;
    animation-duration: 0.9s;
}

.eq-bar:nth-child(4) {
    animation-delay: 0.2s;
    animation-duration: 1.2s;
}

/* Floating Badge Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Scroll-triggered Entrance Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}