/* Splash Screen Animation */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1a2a4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    animation: fadeOutSplash 0.6s ease-out forwards;
    animation-delay: 2.4s;
}

.splash-screen.hidden {
    display: none;
}

.splash-content {
    text-align: center;
    animation: splashFadeIn 0.8s ease-out;
}

.splash-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid #eab308;
    box-shadow: 0 20px 50px rgba(234, 179, 8, 0.3);
    animation: splashScaleIn 0.8s ease-out;
}

.splash-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
    animation: splashTextSlideIn 0.8s ease-out 0.2s backwards;
}

.splash-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 15px 0 0 0;
    font-weight: 300;
    animation: splashTextSlideIn 0.8s ease-out 0.4s backwards;
}

/* Splash Animations */
@keyframes splashFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes splashScaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes splashTextSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutSplash {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .splash-logo {
        width: 60px;
        height: 60px;
        margin: 0 auto 20px;
    }

    .splash-text {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .splash-tagline {
        font-size: 0.85rem;
        letter-spacing: 0.8px;
    }
}
