/**
 * Kremer Loading Screen Overlay
 * Fullscreen loading overlay with bounce animation
 */

.kremer-loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(191, 191, 191, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.kremer-loading-overlay.active {
    display: flex;
}

.kremer-loading-overlay img {
    max-width: 200px;
    height: auto;
    animation: bounce 2s ease-in-out infinite;
}

/* Bounce animation - zoom in and out */
@keyframes bounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .kremer-loading-overlay img {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .kremer-loading-overlay img {
        max-width: 120px;
    }
}
