/**
 * Cinematic Intro Animation
 */

.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.intro-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.intro-content {
    text-align: center;
    position: relative;
}

.intro-logo-wrapper {
    margin-bottom: 2rem;
}

.intro-logo {
    max-width: 300px;
    height: auto;
    opacity: 0;
    transform: scale(0.8);
    animation: logoFadeIn 1s ease-out 0.5s forwards;
}

.intro-logo-text {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(30px);
    animation: logoTextFadeIn 1s ease-out 0.5s forwards;
}

.intro-slogan {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: sloganFadeIn 1s ease-out 1.5s forwards;
}

.intro-loader {
    margin-top: 3rem;
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.loader-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 2px;
    animation: loaderProgress 3s ease-out forwards;
}

@keyframes logoFadeIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoTextFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sloganFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loaderProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .intro-logo-text {
        font-size: 2.5rem;
    }
    
    .intro-slogan {
        font-size: 1rem;
    }
    
    .intro-logo {
        max-width: 200px;
    }
}

