/*********************************
    ELEGANT TRANSPARENT LOADER
*********************************/

/* Reset ringan */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===============================
   LOADER OVERLAY
================================= */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.75); /* transparan elegan */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

/* Tambahan efek gradient soft */
.loader-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.6),
        rgba(245, 245, 245, 0.8)
    );
    z-index: -1;
}

/* ===============================
   LOADER CONTENT
================================= */
.loader-content {
    text-align: center;
}

/* Logo GIF */
.loader-content img {
    width: 70px;
    height: auto;
    display: block;
    margin: 0 auto;

    animation: float 2s ease-in-out infinite;
}

/* Tulisan loading */
.loader-text {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 3px;
    color: #444;
    font-weight: 500;
    opacity: 0.8;
}

/* ===============================
   HIDE STATE
================================= */
.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ===============================
   ANIMATION
================================= */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
    .loader-content img {
        width: 110px;
    }
}
