



/* ############################################# */
        /* BANNER SECTIONS */
/* ############################################# */
.banner-section{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    position: relative;
    overflow: hidden;
    background-color: var(--roseHighlight);
    margin-top: 150px;
}

.banner-image{
    height: 500px;
    width: 101vw;
    object-fit: cover;
}

.banner-section{
    height: 500px;
}

.banner-title-container{
    position: absolute;
    height: fit-content;
    bottom: 1.5rem;
    font-family: var(--title-font);
    letter-spacing: 3px;
    color: var(--white);
    line-height: 100%;
    text-shadow: var(--shadow-text-1);
}

.banner-title-letter{
    font-size: 14em;
    display:none;
    line-height: 90%;
}


#home-banner-image, #home-banner-section{
    height: 725px;
}

#home-banner-title{
    top: 30%;
    opacity: 0;
    transition: all .8s ease-out;
}
#home-banner-text{
    font-size:  calc(1vw + 1vh + 15vmin);
    font-family: var(--aux-font);
    letter-spacing: 1px;
    color: var(--white);
    filter: drop-shadow(-2px 3px 2px var(--blackOpac));
    width: 100%;
    height: fit-content;
    text-align: center;
    font-weight: 200;
    padding: 0px 3rem;
    opacity: .5;
    display:flex;
}
/* ############################################# */
        /* CALL TO ACTION - CTA SECTIONS */
/* ############################################# */
#cta-section{
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    background-color: var(--roseBold);
}

.cta-box{
    height: 40vh;
    max-height: 375px;
    min-width: 500px;
    width: 50vw;
    display:inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    background-color: var(--roseDark);
}

.cta-box:hover{
    cursor: pointer;
}

.cta-box:nth-of-type(2n){
    color: var(--box-grey);
    background-color: var(--roseBold);
}

.cta-title{
    position: absolute;
    top: 2rem;
    font-size: 4em;
    width: 100%;
    text-align: center;
    padding: 5px;
    color: var(--grey);
    z-index: 1;
    transition: letter-spacing .3s ease, color .2s ease;
}

.cta-box:hover > .cta-title{
    color: var(--white);
    letter-spacing: 3px;
    transition: letter-spacing .3s ease, color .2s ease;
}

.cta-message{
    position: absolute;
    width: 100%;
    letter-spacing: 1px;
    font-weight: 400;
    text-align: center;
    min-height: 130px;
    padding: 15px;
    line-height: 115%;
    font-size: 1.1rem;
    border-top: 3px solid;
    border-bottom: 3px solid;
    box-shadow: var(--shadow-inset-full);
    z-index: 1;
}

.cta-box .cta-message{
    background-color: var(--roseBold);
    color: var(--box-grey);
    border-color: var(--white);
}

.cta-box:nth-of-type(2n) .cta-message{
    background-color: var(--roseDark);
    color: var(--white);
    border-color: var(--box-grey);
}

.cta-image{
    position: absolute;
    object-fit: cover;
    object-position: center;
    height: 40vh;
    max-height: 375px;
    min-width: 500px;
    width: 50vw;
    opacity: 1;
    mix-blend-mode: luminosity;
    opacity: .5;
}

.cta-button-text{
    position: absolute;
    bottom: .5em;
    font-size: 3em;
    letter-spacing: 1px;
    line-height: 100%;
    color: var(--white);
    z-index: 1;
    opacity: 0;
    transition: all .3s ease;
}

.cta-box:hover > .cta-button-text{
    bottom: 1em;
    opacity: 1;
    transition: all .3s ease;
}

/* SECTION IMAGES */
.section-image-full{
    position: absolute;
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center;

}
.section-image-left{
    position: absolute;
    left: 0;
    aspect-ratio: 5/6;
    object-fit: contain;
    object-position: center;
    width: 50vw;
    min-width: 320px;
}
.section-image-right{
    position: absolute;
    right: 0;
    aspect-ratio: 5/6;
    object-fit: contain;
    object-position: center;
    width: 50vw;
    min-width: 320px;
}

/* ############################################# */
              /* VIEW PORT STYLES */
/* ############################################# */
/* VIEWPORT < 1200 styles */
@media only screen and (max-width: 1000px){
    /* BANNERS */

    /* CTA */
    .cta-message{
        max-width: 500px;
    }
    .cta-box{
        max-height: 400px;
        width: 100vw;
    }
    .cta-image{
        max-height: 400px;
        width: 100vw;
    }
}
/* VIEWPORT < 850 styles */
@media only screen and (max-width: 850px){
    /* BANNERS */
    .banner-section{
        margin-top: 125px;
    }
    .banner-title-letter{
        font-size: 10em;
    }
    #home-banner-text{
        font-size:  calc(1vw + 1vh + 12vmin);
    }
    
}
/* VIEWPORT < 500 styles */
@media only screen and (max-width: 500px){
    /* BANNERS */
    #home-banner-image, #home-banner-section{
        height: 500px;
    }
    
    .banner-image, .banner-section{
        height: 400px;
    }
    .banner-title-container{
        bottom: 1rem;
    }

    .banner-title-letter{
        font-size: 7em;
    }
    #home-banner-title{
        top: 50%;
    }
    /* CTA */
    .cta-title{
        font-size: 3.25em;
        color: var(--white);
    }
    .cta-button-text{
        font-size: 2.5em;
    }

    .cta-button-text{
        bottom: 1em;
        font-size: 2em;
        letter-spacing: 0px;
        opacity: 1;
    }

    .cta-box:hover > .cta-button-text{
        bottom: 1em;
        opacity: 1;
    }
}
/* VIEWPORT < 425px styles */
@media only screen and (max-width: 425px){
    /* BANNERS */
    #home-banner-image{
        height: 400px;
    }
    #home-banner-section{
        margin-top: 75px;
        height: 400px;
    }
    .banner-image, .banner-section{
        height: 350px;
    }
    .banner-title-letter{
        font-size: 4em;
    }
    
    /* CTA */
    .cta-box{
        min-width: 320px;
    }

    .cta-image{
        min-width: 320px;
    }

    .cta-title{
        top: 1rem;
        font-size: 2.05em;
        padding: 5px;
    }

    .cta-message{
        font-size: .7rem;
        min-height: 80px;
    }

    .cta-button-text{
        font-size: 1.5em;
    }
    
}