/*
Theme Name: PJJ Pijer Podi GBKP
Theme URI: #
Author: Tim PJJ
Author URI: #
Description: Tema WordPress modern dan responsif untuk Sektor PJJ Pijer Podi GBKP. Dibuat menggunakan Tailwind CSS.
Version: 1.0
Text Domain: pjj-pijer-podi
*/

/* Animasi Background Berubah-ubah (Keren & Modern) */
.bg-animated-gradient {
    background: linear-gradient(-45deg, #1e3a8a, #4c1d95, #9f1239, #0f766e, #1e40af);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Glassmorphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Smooth reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}