/* ========== LOGO INTRO ANIMATION ========== */
.logo-intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.logo-intro-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.logo-intro-overlay.hidden {
    display: none;
}

.logo-intro-content {
    position: relative;
}

.logo-intro-img {
    width: 200px;
    height: auto;
    animation: logoZoomIn 2s ease-in-out forwards;
}

@keyframes logoZoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
    60% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(20);
        opacity: 0;
    }
}

.logo-intro-text {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    animation: textFadeIn 1s ease 0.5s forwards, textFadeOut 0.5s ease 1.8s forwards;
}

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

@keyframes textFadeOut {
    to {
        opacity: 0;
    }
}

/* Hide scrollbar during intro */
body.intro-active {
    overflow: hidden;
}
