/*=============================================
  SATYA PHOTOGRAPHY - LOADING SCREEN
=============================================*/
.satya-loading-screen {
    position: fixed;
    inset: 0;
    background: #3a3530;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.satya-loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loading-logo-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-glow-ring {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(139, 115, 85, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
}

.loading-pulse-ring {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px solid rgba(139, 115, 85, 0.15);
    animation: glowPulse 2s ease-in-out infinite 0.5s;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.loading-logo {
    width: 60px;
    height: auto;
    animation: logoSpinIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
    /* No filter - transparent PNG on dark background looks correct as-is */
}

@keyframes logoSpinIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.loading-logo {
    width: 60px;
    height: auto;
    animation: logoSpinIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

.loading-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 6px;
    animation: logoSpinIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

.loading-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.loading-letters {
    display: flex;
    gap: 4px;
}

.loading-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 6px;
    opacity: 0;
    transform: translateY(10px);
    animation: letterReveal 0.5s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading-subtitle {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.loading-bar {
    width: 120px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.8), transparent);
    animation: loadingBarMove 1.5s ease-in-out infinite;
}

@keyframes loadingBarMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
