/* ========================================
   KASHLOOM ATELIER - SPLASH SCREEN
   Simple & Professional
   ======================================== */

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2C2520 0%, #1A1512 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    transition: opacity 0.6s ease;
}

.splash-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-logo {
    text-align: center;
    animation: logoAppear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.splash-logo img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 255, 255, 0.2));
    animation: logoPulse 1.5s ease-in-out infinite;
}

/* Animations */
@keyframes logoAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Prevent body scroll while splash is visible */
body.splash-active {
    overflow: hidden !important;
}

/* Mobile */
@media (max-width: 768px) {
    .splash-logo img {
        width: 150px;
        height: 150px;
    }
}