/**
 * Loading Screen Styles
 *
 * @package bluepencilcoll
 */

/* Loading Screen Container */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--wp--preset--color--putty); /* Putty color from theme.json */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
.loading-text img {
    max-width: 100%;
    /* width: 11vw; */
    width: auto;
}
/* Hide the loading screen by moving it up */
.loading-screen.hide {
    transform: translateY(-100%);
}

/* Logo Container */
.loading-logo {
    margin-bottom: 30px;
}

.loading-logo img {
    max-width: 150px;
    height: auto;
}


/* Body Styles when Loading */
body.loading {
    overflow: hidden;
}

/* Ensure content is visible after loading */
body:not(.loading) #page {
    visibility: visible;
}
