/* Color Theme Swatches in Hex */
.Surfers-at-dawn-1-hex { color: #344154; }
.Surfers-at-dawn-2-hex { color: #B6C9B5; }
.Surfers-at-dawn-3-hex { color: #BED5CD; }
.Surfers-at-dawn-4-hex { color: #F2E2CE; }
.Surfers-at-dawn-5-hex { color: #F2EFE9; }
.Flower-on-blurred-background-3-hex { color: #B8ACAE; }
.Flower-on-blurred-background-4-hex { color: #C8CECC; }
.Orange-call-to-action-1-hex { color:#D9734E; }

/* CSS Styles for Home Page */

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, font, 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, caption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    max-width: 100vw;
    margin: 0;
    background-color: #F2EFE9;
}

.grid-container {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr 2fr 3fr;
    grid-template-rows: repeat (6);
    justify-items: stretch;
    align-items: stretch;
  }

.grid-container .navbar {
    grid-column-start: 1;
    grid-row-start: 1;
    width: 100vw;
    background-color: #F2EFE9;
    position: fixed;
    z-index: 10;
}

.grid-container .ssnavbar {
    display: none;
}

.grid-container .navbar .homelogo {
    grid-column-start: 1 / span 1;
    float: left;
}

.grid-container .navbar .logo {
    width: 40%;
    padding: 0% 20%;
    pointer-events: none;
}

.grid-container .navbar .navbuttons a {
    text-decoration: none;
    list-style: none;
    margin-right: 5%;
    margin-top: 2%;
    float: left;
    padding-top: 1%;
    margin-left: 5%;
    color: #344154;
    font-family: "Raleway";
    font-size: 1.25vw;
}

.grid-container .navbar a:hover {
    color: #D9734E;
}

.grid-container .navbar .active {
    background-color: #B8ACAE;
    color: #344154;
    text-align: center;
    padding-left: 1%;
    padding-right: 1%;
    padding-bottom: 1%;
    border-radius: 15px;
}

.grid-container .navbar .home {
    grid-column: span 1;
}

.grid-container .navbar .about {
   grid-column: span 1;
}

.grid-container .navbar .services {
    grid-column: span 1;
}

.grid-container .navbar .contact {
    grid-column: span 1;
  }

.grid-container .banner {
    grid-column: span 5;
}

.grid-container .banner .heroimg {
    width: 100vw;
    background-size: cover;
    background-position: 50% 50%;
    pointer-events: none;
}

.grid-container .banner .herotag {
    font-family: "Cormorant-Garamond";
    font-size: 4vw;
    font-weight: 400;
    text-align: left;
    color: #344154; 
    position: absolute;
    top: 30%;
    left: 2%;
    right: 5%;
    padding: 6%;
    letter-spacing: 1.2px;
}

.grid-container .intro {
    grid-column-start: 1 / span 5;
    max-width: 100vw;
    padding: 3% 7%;
    margin-right: 5%;
    font-family: "Raleway";
    font-size: 1.125em;
    color: #344154;
    text-align: justify;
    line-height: 1.5;
    height: max-content;
}

.grid-container .intro .textbox {
    margin: 3%;
    border-color: #344154;
    border-radius: 5px;
    border-style: solid;
    border-width: 1%;
    padding: 2%;
    font-weight: 300;
    text-align: center;
}

.grid-container .quote {
    grid-column-start: 1;
    background-color: #BED5CD9D;
    display: inline-flex;
}

.grid-container .quote .quotebox {
    grid-column: span 4;
    max-height: 100vh;
    width: 70vw;
    padding-top: auto;
    padding-bottom: auto;
    padding-left: 5%;
    color: #344154;
    float: left;
    word-wrap: break-word;
    text-align: right;
}

.grid-container .quote .quotebox .quotation {
    font-size: 1.4em;
    font-family: "Cormorant-Garamond";
    font-style: italic;
    font-weight: 300;
    line-height: 150%;
    margin: 5%;
}

.grid-container .quote .quotepic {
    grid-column: span 1;
    float: right;
    max-width: 30vw;
    height: auto;
    margin-left: 5vw;
    pointer-events: none;
}

.grid-container .quote .altquotepic {
    display: none;
    pointer-events: none;
}

.grid-container .worktogether {
    grid-column: span 5;
    padding: 3% 10%;
    font-family: "Raleway";
    font-weight: 300;
    color: #344154;
    text-align: left;
    line-height: 1.5;
    max-height: max-content;
    max-width: 100vw;
    margin-right: 10%;
    word-wrap: break-word;
}

.grid-container .worktogether .willworkhead {
    font-size: 1.25em;
}

.grid-container .worktogether .willworktext {
    font-size: 1em;
    margin-right: 25%;
}

.grid-container .footer {
    background-color: #344154;
    grid-column: span 5;
    width: 100vw;
    max-height: fit-content;
    font-family: "Raleway";
    color: #F2EFE9;
    text-align: center;
}

.grid-container .footer .footercontact {
    text-decoration: none;
    color: #344154;
    font-weight: 700;
    background-color: #BED5CD;
    padding: 1%;
    border-radius: 15px;
    border-color: #344154;
    border-width: 1px;
    border-style: solid;
}

.grid-container .footer a:hover {
    color: #D9734E;
}

.grid-container .footer .footerlogo {
    grid-column: 3 / span 1;
    width: 15%;
    margin: auto;
    pointer-events: none;
}

.grid-container .footer .footerlegal {
    font-size: 0.70em;
    letter-spacing: 1.5px;
    padding: 2%;
}

