/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--deep-charcoal);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 0.5s ease 2.5s forwards;
}

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

.loading-logo {
    width: 100px;
    height: auto;
    z-index: 2;
    position: relative;
}

.spinner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
}

.spinner-outer {
    border-top-color: var(--warm-gold);
    animation: spin 1.5s linear infinite;
}

.spinner-inner {
    inset: 20px;
    border-bottom-color: var(--champagne-gold);
    animation: spin 1s linear infinite reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeOut {
    to { opacity: 0; pointer-events: none; }
}
