body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 1.6;
}

.link {
    color: #336699;
    text-decoration: none;
}

/* hero container */
.hero {
    height: 60vh;
    width: 100%;
    background-image: url('images/hero-bigrose.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Centering the content inside */
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    text-align: center;
    color: white;
}

.std-image {
    width: 90%;
    margin: 0 auto;
}

.hero_nav_dark_gray {
    background: linear-gradient(to bottom, rgb(255, 255, 255), rgba(100, 100, 100, 0.05));
    height: 500px;
    width: 100%;
}

.quote {
    font-size: 4rem;
    line-height: 0.6em;
}


/* Typography & Content */
.hero-content {
    max-width: 800px;
}

.hero-h1 {
    font-weight: 800;
    font-size: 3rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px #222
}

.montserrat-section-header {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}


.hero-tag {
    text-transform: uppercase;
    max-width: 500px;
    font-size: .95rem;
    padding: 4px 20px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 500px;
    height: auto;
}

.hero-img-container {
    margin: 0 auto;
}

.main-content {
    max-width: 800px;
    margin: 0 auto;
}

.flex-box {
    display: flex;
    flex-wrap: wrap;
}

.flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-height: 400px;
}

.flex-people {
    display: flex;
    margin: 0 auto;
}

.flex-people>div {
    width: 25%;
    margin: 0;
    padding: 2%;
}

.salon-img {
    width: 100%;
    height: auto;
    display: block;
}

.flex-services {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.flex-services>div {
    width: 31%;
    margin: 3% 1%;
}

.container-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-headers-h1 {
    font-weight: 800;
    font-size: 3rem;
    color: #444;
}

.section-headers-h2 {
    font-weight: 800;
    font-size: 2.5rem;
    color: #444;
}

.footer-content {
    font-size: .85rem;
}

.text-at-bottom {
    font-size: .75rem;
}


/* contact form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: block;
    font-family: sans-serif;
}

.hidden-field {
    display: none !important;
}

/* mobile responsiveness */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        /* Shorter height on phones */
    }

    /* contact form */
    .contact-form {
        max-width: 100%;
    }

    .section-headers-h2 {
        font-weight: 800;
        font-size: 2rem;
        color: #444;
    }

    .quote {
        font-size: 2rem;
    }

    .hero_nav_dark_gray {
        background: linear-gradient(to bottom, rgb(255, 255, 255), rgba(100, 100, 100, 0.05));
        height: 300px;
        width: 100%;
    }

    .hero-logo {
        max-width: 80%;
        height: auto;
    }

    .hero-h1 {
        font-size: 2rem;
    }

    .hero-tag {
        text-transform: uppercase;
        max-width: 75% !important;
        font-size: .85rem;
        padding: 4px 20px;
        margin: 0 auto;
    }


    .main-content {
        padding: 0 5%;
        font-size: 1.25rem;
    }

    .content-txt {
        padding: 0 5%;
    }

    .section-headers-h1 {
        text-align: center !important;
    }


    .flex-people {
        flex-direction: column;
    }

    .flex-people>div {
        width: 90%;
        margin: 0 auto;
        padding: 5%;
    }

    .flex-people div button {
        font-size: 1.5rem;
    }


    .flex-services {
        flex-direction: column;
    }

    .flex-services>div {
        width: 95%;
        margin: 5% auto;
        padding: 2.5%;
    }

    .flex-services div ul {
        font-size: 1.1rem;
    }

    .footer-content {
        font-size: 1rem;
    }

    .footer-content div {
        margin: 5% auto;
    }

    .img-aveda {
        width: 50%;
        height: auto;
    }

    .stylist-modal-info {
        padding: 0 1%;
    }

    .close-button {
        font-size: 2rem;
    }

}