@import "/global.css";
@import "/halftone/style.css";

@import "/projects/projects.css";

body {
    /* background: #0A0A0A; */
    background-color: #f5f5f5;
    overflow-x: hidden;
    display: block;
    padding: 0;
}







.sec-0 {
    background: #0A0A0A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#landing-vid {
    max-width: 1200px;
    width: 90%;
    height: 300px;
}


#navbar {
    max-width: 1200px;
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
    margin-top: 0;
}

#landing-logo {
    width: 45px;
}

#navbar img {
    filter: none;
}

#nav-links {
    display: flex;
    flex-direction: row;
    gap: 70px;
}

.nav-link {
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    color: white;
}

#textbox {
    max-width: 1200px;
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: top;
    margin-top: 100px;
}

.landing-title {
    color: white;
    font-weight: bold;
    font-size: 48px;
    line-height: 95%;
}

.landing-text {
    color: white;
    font-weight: normal;
    font-size: 20px;
    line-height: 95%;
}


.sec-1-wrapper {
    height: 100vh;
    z-index: 0;
}

.sec-1 {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 460px;
    background-image: url("images/landing-backdrop.webp");
    background-attachment: fixed;
    /* margin-bottom: 200px; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 calc((100% - 1200px) / 2);
    z-index: 0;
}

.sec-1-content {
    max-width: 320px;
    color: black
}

.sec-1-heading {
    font-size: 16px;
    font-weight: bold;
    opacity: 30%;
    margin-bottom: 10px;
}

.sec-1-text {
    font-size: 24px;
    font-weight: bold;
    height: 200px;
}

.sec-1 a {
    color: black;
    font-size: 24px;
}

#site {
    width: 100%;
    margin-top: calc((100vh - 460px)*(-1));
    z-index: 10;
    position: relative;
    background: #f5f5f5;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#landing-vid video {
    border-radius: 0;
}




@media only screen and (max-width: 1200px) {
    
    body {
        background-color: #0A0A0A;
    }

    .sec-0 {
        background: #0A0A0A;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100dvh;
    }
    
    #landing-vid {
        display: block;
        height: 300px;
        transform: translateX(-100%);
    }
    
    
    #navbar {
        width: 90%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 50px;
    }
    
    #landing-logo {
        width: 45px;
        filter: none;
    }
    
    #nav-links {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-link {
        font-weight: bold;
        text-decoration: none;
        font-size: 16px;
        color: white;
    }
    
    #textbox {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 50px;
        align-items: top;
        margin-top: 50px;
    }

    
    .landing-title {
        color: white;
        font-weight: bold;
        font-size: 56px;
        line-height: 95%;
        width: 100%;
    }
    
    .landing-text {
        width: 100%;
        color: white;
        font-weight: bold;
        font-size: 20px;
        line-height: 100%;
    }

    #textbox br {
        display: none;
    }

    .sec-1 {
        position: sticky;
        top: 0;
        width: 100vw;
        height: 500px;
        background-color: #e8e8e8;
        background-image: none;
        background-attachment: fixed;
        -webkit-background-attachment: fixed;
        background-size: cover;
        -webkit-background-size: cover;
        display: flex; 
        flex-direction: column;
        justify-content: center;
        gap: 50px;
        align-items: center;
        padding: 50px 0;
        z-index: 0;
    }

    .sec-1-content {
        width: 300px;
        color: black
    }
    
    .sec-1-heading {
        font-size: 16px;
        font-weight: bold;
        opacity: 30%;
        margin-bottom: 10px;
    }
    
    .sec-1-text {
        font-size: 18px;
        font-weight: bold;
        height: fit-content;
    }
    
    .sec-1 a {
        color: black;
        font-size: 18px;
    }

    #site {
        margin-top: calc((100vh - 500px)*(-1));
        z-index: 10;
        position: relative;
    }

    .footer {
        color: white;
    }
    
}