/* Remove default body spacing */
body {
    margin: 0;
    background-color: white;
}

/* HERO SECTION */

.hero {
    position: fixed;
    top: 0;
    left: 0;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    z-index: 0;
}

/* VIDEO BACKGROUND */

.hero-video {
    position: absolute;
    top: -50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: translateX(-50%);
}

/* DARK OVERLAY */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

/* HERO TEXT */

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

/* PROJECT SECTIONS */

.page-content {
    background: white;
    position: relative;
    z-index: 2;
    margin-top: 55vh;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.project:first-of-type {
    margin-top: -100vh;
    padding-top: 10vh;
}
