.page-curtain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Matches your site background */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

/* When active, slide up */
.page-curtain.revealed {
    transform: translateY(-100%);
}

/* Optional styling for the curtain text */
.curtain-content {
    text-align: center;
}

.curtain-logo {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-style: italic;
    letter-spacing: 5px;
    margin-bottom: 10px;
    color: #1a1a1a;
    height: 100px;
}

.curtain-sub {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 10px;
    color: #b0b0b0;
}