/* -- Section 1 - Banner -- */
section.banner {
    width: 100%;
    min-height: calc(100vh - 146px);
    background-size: cover;
    background-position: 0 100%;
    background-repeat: no-repeat;
}
section.banner div.background-container {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0 12vw;
    height: calc(100vh - 146px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
section.banner h1 {
    width: 100%;
    overflow-wrap: break-word;
    font-size: var(--title-size);
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 0.9em;
}

/* -- Section 2 - About -- */
section.about {
    padding: 160px 8vw 100px;
}

section.about div.about-container {
    margin-top: 26px;
    display: flex;
    gap: 8vw;
}

section.about h1.standout-statement-title {
    text-align: center;
    margin: 60px 0;
}
section.about div.standout-statement-container {
    display: flex;
    justify-content: center;
    gap: 8vw;
}

section.about div.standout-statement-container ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2em;
}
section.about div.standout-statement-container ul li {
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 300;
    padding-left: 30px; /* Adds space for the custom image/marker */
    background-image: url("../images/check.png"); /* Specifies the image */
    background-repeat: no-repeat; /* Ensures the image appears only once */
    background-position: left top; /* Positions the image to the left and vertically centered */
    background-size: 20px; /* Adjust this value to set the desired image size */
}

/* -- Section 3 - Image Collage -- */
figure.wp-block-gallery {
 gap: 0px !important;
}

/* -- Section 4 - Services -- */
section.services {
    background-image: url("../images/textured-bg.png");
    padding: 80px 8vw 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
section.services div.services-container {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 0px;
    margin-top: 26px;
}
section.services div.services-container div.service-card {
    box-sizing: border-box;
    padding: 40px 30px;
    background-color: white;
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
section.services div.services-container div.service-card h1 {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 24.75px;
}

/* -- Responsive CSS -- */
@media screen and (max-width: 1310px) {
    /* -- Section 1 - Banner -- */
    section.banner div.background-container {
        height: calc(100vh - 94px);
        padding: 0 4vw;
    }

    /* -- Section 2 - About -- */


    /* -- Section 3 - Image Collage -- */


    /* -- Section 4 - Services -- */
    section.services div.services-container div.service-card {
        width: 50%;
    }

    /* -- Section 5 - Contact Info -- */
    section.contactInfo div.background-container {
        padding: 120px 4vw;
    }

    /* -- Section 6 - Contact Form -- */
    section.contactForm {
        padding: 120px 6vw 80px;
        gap: 5%;
    }

    section.contactForm div.col-1 {
        padding: 0px 2vw 0px 0px;
    }
}

@media screen and (max-width: 830px) {
    /* -- Section 1 - Banner -- */


    /* -- Section 2 - About -- */
    section.about div.about-container {
        display: flex;
        flex-direction: column;
    }
    section.about div.standout-statement-container {
        flex-direction: column;
        gap: 2em;
    }

    /* -- Section 3 - Image Collage -- */
    section.collage img {
        width: 50%;
    }

    /* -- Section 4 - Services -- */
    section.services div.services-container div.service-card {
        width: 100%;
    }

    /* -- Section 5 - Contact Info -- */


    /* -- Section 6 - Contact Form -- */
    section.contactForm {
        flex-direction: column;
    }

    section.contactForm :is(div.col-1, div.col-2) {
        width: 100%;

    }
}
