@charset "UTF-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*PAGE CSS BEGINS HERE*/

:root {
    --pink: #faccd5;
    --medPink: #f2748f;
	--dkPink: #c91f4b;
}

html, body {
    font-family: "Montserrat", "sans-serif";
    height: 100%;
    color: #3b3d3d;
    background-color: #fff;
}

body {
    display: flex;
    flex-direction: column;
}

header {
    background-image: url(../_img/headerBackground.webp);
    background-repeat: no-repeat;
    background-position:top;
    background-size: 100;
    /*object-fit: contain;*/
    width: 100%;
    height: auto;
    /*max-height: 285px;*/
    padding: 15px; 
    z-index: 2;
}

h1 {
    font-family: 'Moret', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    color: var(--dkPink);
    margin-bottom: 15px;
}

h2 {
    font-family: 'Moret', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--medPink);
    margin-bottom: 15px;
}

h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--dkPink);
    margin-bottom: 15px;
    line-height: 24px;
}

h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--dkPink);
    margin-bottom: 25px;
}

p {
    color: var(--dkPink);
    margin-bottom: 20px;
    line-height: 20px;
}

strong {
    font-weight: 700;
}

ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 20px;
}

ul li {
    padding-left: 10px;
    color: var(--dkPink);
    margin-bottom: 5px;
}

a {
    color: var(--dkPink);
}

a:hover {
    color: var(--medPink);
}

.caps {
    text-transform: uppercase;
}

.pink {
    color: var(pink);
}

.spacer {
    margin: 60px 0;
}

.button {
    background-color: var(--pink);
    color: var(--dkPink);
    font-weight: 700;
    text-transform: uppercase;
    width: fit-content;
    padding: 10px;
}



.headerTop {
    display: flex;
    justify-content: space-between;
    height: 50%;
    /*margin-right: 5%;*/
    margin-bottom: 20px;
}

.headerSocial {
    width: 75px;
    display: flex;
    justify-content: space-between;
}

.headerSocial img {
    height: 35px;
    width: auto;
}

.headerHours {
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.headerHours h3 {
    color: #fff;
    margin: 0;
}

.headerHours p {
    color: #fff;
    margin: 0;
}

.headerHours p:first-of-type {
    margin-bottom: 10px;
}

.headerHours .col1 {
    /*transform: rotate(-90deg);*/
    display: flex;
    align-items: center;
    color: #fff;
}

.headerHours .col1 img {
    width: 55px;
    height: auto;
}

.headerHours .col1 h2 {
    font-family: 'Moret', sans-serif;
    font-size: 52px;
}

.headerHours .col2 h3 {
    margin-bottom: 5px;
}

.headerHours .col2 {
    width: 350px;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 22px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #fff;

}

.headerBottom {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    flex-wrap: wrap;
}

main {

}

.mainBanner {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
    z-index: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.mainBanner .layer1 {
    width: 100%;
    height: auto;
}


.mainBanner .layer1 img{
    min-width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.mainBanner .layer2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.mainBanner .layer2 img {
    max-width: 80%;
    height: auto;
}

.mainBanner .layer3 {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
background: linear-gradient(0deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 1) 95%);
}

.backgroundFill {
    background-color: var(--pink);
    min-height: 500px;
}

.mainBannerBottom {
    background-color: var(--pink);
    color: var(--dkPink);
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-family: "Montserrat", "sans-serif";
    font-weight: 500;
    padding: 15px;
    letter-spacing: 1px;
}

.mainBannerBottom p {
    margin-bottom: 0;
}

.threeColumn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 90%;
    margin: 80px auto;
    gap: 5%;
}

.threeColumn img {
    display: block;
    max-width: 300px;
    height: auto;
}

.threeColumn .item {
    display: flex;
    flex-direction: column;
}

.threeColumn .itemText {
    background-color: var(--pink);
    color: var(--dkPink);
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-family: "Montserrat", "sans-serif";
    font-weight: 700;
    font-size: 22px;
    padding: 10px;
}

.twoColumn {
    width: 90%;
    margin: 80px auto;
    display: flex;
    flex-wrap: wrap;
}

.twoColumn .col1 {
    width: 70%;
    padding-right: 20px;
}

.twoColumn .col2 {
    width: 30%;
}

.twoColumn .col2 img {
    max-width: 100%;
    height: auto;
    display: block;
}

.twoColumn .col2 iframe {
    width: 100%;
    min-height: 600px;
    max-height: 800px;
}

footer {
    background-image: url(../_img/footerBackground.webp);
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 450px;
    background-position: top;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

.footerContainer {
    width: 100%;
}

.footerRow {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    text-transform: uppercase;
    font-family: "Montserrat", "sans-serif";
    color: var(--dkPink);
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
}

.footerTagline {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: "Montserrat", "sans-serif";
    color: var(--dkPink);
    font-weight: 700;
    font-size: 11px;
}

@media all and (max-width: 660px) {

    header {
        background-size: 350%;
    }


    header .headerSocial {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .headerTop {
        margin-top: 20px;
        margin-bottom: 80px;
        height: auto;
    }

    .headerHours {
        padding: 0;
    }



    .mainBanner {
    }

    .backgroundFill {
        min-height: 300px;
    }

    .mainBannerBottom {
        text-align: center;
    }

    .mainBannerBottom p {
        font-size: 14px;
    }

    .threeColumn {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        margin: 40px auto;
        gap: 40px;
    }

    .threeColumn img {
        max-width: 200px;
        padding: 0;
        margin: 0;
    }

    .threeColumn .item {
        max-width: 200px;
        padding: 0;
    }

    

    .twoColumn {
        flex-direction: column;
        gap: 40px;
    }

    .twoColumn .col1 {
        width: 100%;
    }

    .twoColumn .col2 {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    nav {
        margin-top: 20px;
    }

    footer {
        align-items: center;
        min-height: 500px;;
    }

    .footerContainer {
        width: 90%;
    }

    .footerRow {
        flex-direction: column;
    }

    .footerLogo {
        display: flex;
        justify-content: center;
    }

    .footerLogo img{
        width: 70%;
        height: auto;
        margin-bottom: 20px;
    }

    .footerText {
        text-align: center;
    }

    .footerText p {
        line-height: 25px;
    }

    footer .headerSocial {
        margin: auto;
    }

    .footerTagline {
        margin-top: 20px;
    }


}