@media screen and (max-width: 1031px) {
    .nav-bar {
        height: calc(100% - 2.5rem);
        align-items: center;
    }
    
    .nav-bar li {
        width: 90%;
    }
    
    #title {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 2em;
        width: 100%;
        background: radial-gradient(circle, rgba(0,0,0,0.5) 20%, rgba(255,255,255,0) 100%);
    }
    #title-center:before, #title-center:after {
        content: "";
        display: block;
        height: 1px;
        width: 100%;
        background: radial-gradient(circle, var(--paper) 20%, rgba(255,255,255,0) 100%);
    }
    
    #title-center {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }
    
    #sub-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .rose-divider-side {
        position: relative;
        bottom: -1.35rem;
        display: block;
        height: 6em;
    }
    
    .rose-divider-center {
        display: block;
        width: 100%;
    }
    
    h1 {
        text-align-last: center;
        font-size: 5vmax;
        color: var(--paper); 
    }
    
    h2 {
        text-align: center;
        font-size: 5vmax;
        color: var(--paper);
    } 
    
    h3 {
        text-align: center;
        font-size: 3vmax;
        color: var(--paper);
    }  
    
    .nav-link {
        padding: 0.5rem 1rem;
        font-size: 5vmax;
        width: 100%;
        border-top: solid 2px var(--paper);
        border-bottom: solid 2px var(--paper);
    }
    
    html:not([data-scroll = "0"]) #title {
        display: none;
    }
    
    #gallery img {
        object-fit: cover;
    }
    
    .picture-1 {
        top: 3.5rem;
        left: 0;
        width: calc(100% - 1rem);
        height: calc(62% - 4.5rem);
    }
    
    .picture-2 {
        top: 62%;
        left: 0;
        width: calc(62% - 1rem);
        height: calc(38% - 4.5rem);
    }
    
    .picture-3 {
        top: 62%;
        left: 62%;
        width: calc(38% - 1em);
        height: calc(38% - 1em);
    }
    
    #about {
        position: relative;
        overflow: clip;
    }
    
    .text-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 100%);
        color: var(--paper);
        padding: 5em 2em;
    }
    
    .feature-pic {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        filter: brightness(0);
        transition: filter 0.5s;
        z-index: -1;
    }
    
    
    #contact {
        flex-direction: column;
    }
    
    #contact div {
        width: 100vw;
    }
    
    #contact h1 {
        display: block;
        background: black;
        width: 100vw;
        border-top: 2px solid var(--light-brown);
        border-bottom: 2px solid var(--light-brown);
    }
    
    form {
        width: 90vw;
        max-height: 60vh;
    }
    
    textarea {
        width: calc(90vw - 2rem);
        height: 20vh;
    }

    .left-fade {
        display: block;
        height: 110vh;
        width: 20vw;
        position: absolute;
        right: 42%;
        bottom: -5vh;
        background: linear-gradient(-90deg, rgba(0,0,0,1) 50%, rgba(255,255,255, 0) 100%);
        transform: rotate(-5deg) translateZ(-1px);
    }
    
    .section-header {
        padding-bottom: 0.25em;
        margin-bottom: 0.25em;
        border-bottom: 1px solid var(--paper);
        width: max-content;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hidden-mobile {
        display: none;
    }

}