/* HOME - HERO */
.home-hero {
    width: 100%;
    height: 600px;
    position: relative;
}

.home-hero img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.home-hero-overlay {
    width: 100%;
    height: 100%;
    backdrop-filter: brightness(30%) blur(2px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    user-select: none;
    text-align: center;
}

.home-hero-overlay h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.home-hero-overlay h4 {
    font-size: 2rem;
    font-weight: 300;
}

/* HOME - BANNER */
.home-banner {
    padding: 50px 0;
    background-color: var(--main-blue);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-banner a{
    text-decoration: none;
    color: white;
    font-size: 2rem;
    transition: color 0.1s linear;
}

.home-banner a:hover{
    text-decoration: none;
    color: lightgray;
    font-size: 2rem;
}

.home-banner a::after{
    width: 0%;
    content: "";
    display: block;
    height: 3px;
    background-color: var(--main-white);
    transition: width 0.3s ease-in-out;
}

.home-banner a:hover::after{
    width: 100%;
}

/* HOME - ABOUT */
.home-about {
    width: 100%;
    padding: 100px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.home-about img {
    max-width: 90%;
}

.home-about-content {
    width: 700px;
    max-width: 90vw;
    background-color: #f9f9f9;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
}

.home-about-content h2 {
    margin: 10px 0;
}

.home-about-content h3 {
    margin: 0;
}

.home-about-content .red-line {
    margin: 10px 0px;
}

.home-about-content .bible-verse {
    text-align: center;
    font-style: italic;
}

.home-about-image-wrap {
    width: 700px;
    height: 500px;
    max-width: 80vw;
    overflow: hidden;
    border-radius: 10px;
}

.home-about img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}


/* HOME - GALLERY */
.home-gallery {
    padding: 100px 0px;
    background-color: var(--main-red-darker);
    box-shadow: inset 0px 0px 12px 0px black;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.home-gallery h3 {
    font-size: 2.5rem;
    margin: 0 0 5px 0;
}

.home-gallery p {
    margin: 0 0 5px 0;
}

.home-gallery .blue-line {
    background-color: white;
    margin-bottom: 40px;
}

.home-gallery-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 40px;
    row-gap: 20px;
    width: 100%;
}

.home-gallery-image-wrap {
    width: 400px;
    height: 300px;
    max-width: 80vw;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 0px 8px -4px black;
    z-index: 2;
    position: relative;
}

.home-gallery-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    position: relative;
}

.home-gallery .button {
    font-size: 1.5rem;
    margin-top: 20px;
    color: var(--main-red);
    background-color: white;
}

.home-gallery .button:hover {
    background-color: lightgray;
}



/* HOME - SERVICES */
.home-services {
    width: 100%;
    padding: 25px 0px;
    background-color: #f9f9f9;
}

.home-services-row {
    width: 100%;
    padding: 150px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
}

.home-services-image-wrap {
    width: 600px;
    max-width: 90vw;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
}

.home-services-image-wrap img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.home-services-row-content {
    width: 600px;
    max-width: 90vw;
}

.home-services-row-content h3 {
    margin: 0 0 10px 0;
    font-size: 2rem;
}

.home-services-row-content h5 {
    margin: 0;
    font-size: 1.25rem;
}

.home-services-row-content .blue-line {
    margin-left: 0;
}

.home-services-row-content p{
    margin-bottom: 30px;
}

.home-services-row-content .button {
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 1.5rem;
}

.wrap-alt {
    flex-wrap: wrap-reverse;
    background-color: var(--main-white);
}

.home-services-banner {
    width: 100%;
    padding: 100px 0px;
    background-color: var(--main-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    user-select: none;
    box-shadow: inset 0px 0px 10px 2px black;
}

.home-services-banner h3 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.home-services-banner .button {
    font-size: 2rem;
}