/* public/css/style.css */

body {
    /* OPSI 1: Background dengan gambar */
    /* Ganti URL di bawah dengan path atau URL gambar background Anda */
    /* background-image: url('https://lh3.googleusercontent.com/pw/AP1GczN--0nqp3cbg7In7dPkzmo77bTstTFLqyFqynLwexh3jKe2cI5P05WOKmc00kr_De3vyZw8VR373LRIzetOtrdojlPw54oxBBxoAIPp1B3S0ez_YK8rikHGeJfcfMGkVp_s9IzmkzUduGOj7oFh-14=w950-h949-s-no-gm?authuser=0'); */
    background-image: url('../images/DRC.png'), url('../images/DRC.png'); /* Ganti dengan path gambar Anda */
    background-repeat: no-repeat;
    background-size: 20%;
    /* background-size: cover; */
    background-position: top left, top right;
    background-attachment: fixed;
    /* Akhir OPSI 1 */

    /* OPSI 2: Background dengan warna solid */
    /* Jika ingin menggunakan warna, hapus tanda komentar di bawah dan beri komentar pada OPSI 1 */
    background-color: #1f1f1f; 
    /* Akhir OPSI 2 */
}

/* Gaya untuk animasi putar */
.animate-pulse {
    animation: pulse 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* @keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
} */

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Gaya untuk Modal (Pop-up) Kustom */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background-color: #fefefe;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 90%;
    max-height: 90%;
    overflow-y: auto;
}

/* Custom style for larger modal content */
.modal-content-lg {
    max-width: 900px; /* Anda bisa mengubah nilai ini */
    width: 95%;
}

