/* landing */
#landing {
    display: flex;
    flex-direction: column;
    gap: 45px;
    height: 100vh;
    justify-content: center;
    max-height: 100vh;
}

#statement {
    font-size: 3em;
    font-family: 'Xanh Mono';
    font-weight: 300;
}

#fun-images {
    max-height: 60vh;
    display: flex;
    justify-content: space-between;
    overflow-x: hidden;
    overflow-y: visible;
}

.shape {
    flex: 1;
}

.shape img {
    width: 100%;
    height: auto;
    display: block;
}

.shape-1 img {
    mask-image: url('../images/b3.svg');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url('../images/b3.svg'); /* Safari */
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.shape-2 img {
    mask-image: url('../images/b2.svg');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url('../images/b2.svg'); /* Safari */
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.shape-3 img {
    mask-image: url('../images/b1.svg');
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url('../images/b1.svg'); /* Safari */
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

#other-info {
    font-size: 1.1em;
    line-height: 1.24em;
    letter-spacing: -0.03em;
    max-width: 30%;
}

#studio-bio {
    max-width: 40%;
}

#studio-bio p {
    margin-top: 20px;
}

/*media queries*/
@media (max-width: 768px) {

    #landing {
        padding: 80px 0 100px 0;
        gap: 30px;
        height: auto;
        /*min-height: 100vh;*/
        justify-content: space-between;
        overflow-x: hidden;
    }

    #statement {
        font-size: 1.8em;
        line-height: 1.1em;
    }

    #fun-images {
        flex-direction: column;
        gap: 30px;
        height: auto;
        max-height: none;
        align-items: flex-start;
        overflow: visible;
    }

    .shape {
        width: 100%;
        max-width: none;
        height: auto;
        flex: none;
    }

    .shape:nth-child(odd) {
        align-self: flex-start; 
        margin-left: -50px;
    }

    .shape:nth-child(even) {
        align-self: flex-end;
        margin-right: -70px;
    }

    .shape img {
        width: 100%;
        height: auto;
    }

    #other-info, #studio-bio {
        max-width: 100%;
        font-size: 1em;
    }

}