/* Website Opening Transition */
#transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out;
}

.transition-logo {
    width: 80%;
    max-width: 500px;
    height: auto;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 5px rgba(155, 89, 182, 0.3));
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(155, 89, 182, 0.8));
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 5px rgba(155, 89, 182, 0.3));
        opacity: 0.8;
    }
}

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