/* === PAGE TRANSITIONS === */

/* Overlay that covers the screen during navigation */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 99998;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.page-transition-overlay.reveal {
    opacity: 0;
}

.page-transition-overlay.active {
    opacity: 1;
    pointer-events: all;
}
