:root {
    --bg-color: #BBE7FF;
    /* Light Blue background matching the design */
    --text-color: #FFFFFF;
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #BBE7FF 0%, #FFFFFF 100%);
    font-family: 'Pridi', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.construction-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.construction-text {
    position: absolute;
    font-size: 13.5vw;
    /* Highly responsive, fills screen width well */
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    line-height: 0.9;
    letter-spacing: -1px;
    margin: 0;
    z-index: 1;
    /* Set behind the image */
    text-transform: uppercase;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    /* Set in front of the text */
    height: 85vh;
    /* Keep image proportional to screen height */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align image towards bottom center */
}

.construction-image {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}