/* ============================================
   INTRO ANIMATION - LUXURY LOADER
   ============================================ */

.lohary-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #2C1810 0%, #1a0f0a 100%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.lohary-intro.fade-out {
    opacity: 0;
    visibility: hidden;
}

.intro-logo {
    font-family: 'Georgia', serif;
    font-size: 72px;
    font-weight: 300;
    letter-spacing: 12px;
    color: #D4AF37;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.intro-tagline {
    font-family: 'Georgia', serif;
    font-size: 16px;
    letter-spacing: 4px;
    color: #FFF8E7;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

.intro-loader {
    width: 200px;
    height: 2px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.intro-loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #D4AF37 0%, #f4d03f 50%, #D4AF37 100%);
    border-radius: 2px;
    animation: loadBar 2s ease-in-out forwards;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.intro-ornament {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.intro-ornament:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.intro-ornament:nth-child(2) {
    bottom: 15%;
    right: 15%;
    animation-delay: -5s;
}

.intro-ornament:nth-child(3) {
    top: 50%;
    right: 5%;
    width: 60px;
    height: 60px;
    animation-delay: -10s;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes loadBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .intro-logo {
        font-size: 48px;
        letter-spacing: 8px;
    }
    
    .intro-tagline {
        font-size: 12px;
        letter-spacing: 3px;
    }
    
    .intro-loader {
        width: 150px;
    }
    
    .intro-ornament {
        width: 60px;
        height: 60px;
    }
    
    .intro-ornament:nth-child(3) {
        width: 40px;
        height: 40px;
    }
}
