/* === VIDEO BACKGROUND === */
.video-background {
    position: relative;
    width: 100%;
    height: calc(100vh - 90px);
    /* keeps full screen minus navbar area */
    overflow: hidden;
    /* margin-top: 67px; */
    /* Start exactly after navbar */
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* === OVERLAY === */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #545352, rgba(215, 213, 212, 0.205));
    z-index: 1;
}