﻿/* wwwroot/css/luxury-loading.css */
.luxury-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(4px);
}

.luxury-progress-container {
    width: 80%;
    max-width: 600px;
    text-align: center;
}

.luxury-loading-title {
    margin-bottom: 30px;
    font-size: 32px;
    color: #EEEDF8;
    text-shadow: 0 0 15px rgba(226, 185, 76, 0.4);
    letter-spacing: 3px;
    font-family: 'dana', 'yekanlight', serif;
}

.luxury-progress-bar-wrapper {
    width: 100%;
    height: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 2px solid #3a3a3a;
}

.luxury-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #E2B94C 0%, #f5d666 50%, #E2B94C 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(226, 185, 76, 0.6), inset 0 2px 10px rgba(238, 237, 248, 0.2);
}

    .luxury-progress-bar.animating {
        animation: luxuryFillProgress 240s cubic-bezier(0.05, 0.9, 0.5, 1) forwards, luxuryShimmer 3s linear infinite;
    }

@keyframes luxuryFillProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes luxuryShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@media (max-width: 768px) {
    .luxury-loading-title {
        font-size: 24px;
    }

    .luxury-progress-container {
        width: 90%;
    }
}
