.hero-bg {
    position: relative;
    width: 100vw; /* 100% of viewport width */
    height: 100vh;
    margin-top: 0; /* ensure no spacing */

    background-position: center;
    background-repeat: no-repeat;
    
}

.banner-image {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* Horizontal center */
    align-items: center; /* Vertical center */
    z-index: 2;
}

.overlay-content {
    text-align: center;
    color: white;
    z-index: 3;
}

/* Section backgrounds */
.landing-hero {
    background-image: url('images/truck_front.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.our-story-hero {
    background-image: url('images/our-story.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    min-height: 100vh;
    position: relative;
}

.vision-mission-section {
    background-image: url('images/vision.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    min-height: 100vh;
    position: relative;
}

.services-section {
    background-image: url('images/service.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    min-height: 100vh;
    position: relative;
}

.contact-section {
    background-image: url('images/contact.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw;
    min-height: 80vh;
    position: relative;
}

.f-16 {
    font-size: 16pt;
}

.h1 {
    font-family: work-sans, sans-serif;
    font-weight: light;
}

.footer {
    position: static;
    left: unset;
    bottom: unset;
    width: 100%;
    z-index: 1000;
    background: #222;
    color: #fff;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

body {
    padding-bottom: 0;
}