/*
Theme Name: WP-Pandora
Author: Ostac
Description: A minimal WordPress theme styled with Tailwind CSS
Version: 003
Text Domain: wp-pandora
*/

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

/* Hero Section Background - will be set inline via PHP */
.hero-section {
    background-size: cover;
    background-position: center;
}

/* Hero Overlay */
.hero-overlay {
    background-color: #191919;
    opacity: 0.5;
}

/* Gradient Background Section */
.gradient-section {
    background-image: radial-gradient(at center center, #960D0D 0%, #0D171D 100%);
}

/* Animation for Sliders */
@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-slide {
    animation: scrollLoop 40s linear infinite;
}