/**** CONTACT - HERO *****/
.contact-hero {
    width: 100%;
    height: 500px;
    position: relative;
}

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

.contact-hero-overlay {
    width: 100%;
    height: 100%;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(38, 38, 38, 0.747);
    padding: 20px 0 20px 5vw;
    box-sizing: border-box;
}

.contact-hero-overlay h1 {
    color: white;
    margin: 0 0 10px 0;
    width: 600px;
    max-width: 90vw;
    position: relative;
}

.contact-hero-overlay h1::after {
    content: '';
    width: 75px;
    bottom: -5px;
    height: 5px;
    background-color: var(--main-color);
    left: 0;
    display: block;
    position: absolute;
}

.contact-hero-overlay p {
    color: white;
    margin: 0 0 30px 0;
    width: 600px;
    max-width: 90vw;
    font-size: 18px;
    text-align: start;
}

/**** CONTACT - BANNER *****/
.contact-banner {
    padding: 50px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    color: white;
}

.contact-banner h2 {
    margin: 0;
}


.filler-banner {
    width: 100%;
    height: 120px;
    background-color: var(--accent-color);
}
/*****BEGIN FORM STYLING*****/
/* 

    Styling for form templates.
    Modify as required. Initial styles are only to show outline of the form, and fonts, colors, etc. are free to be modified.

*/


/* 
    Color theme variables for form
*/

:root {
    --shadow-color: grey;
    --important-color: maroon;
    --input-outline: lightgray;
}


/* 
    Styling for wrapper on forms
    By default, includes a tight border to show dimensions of the form.
    Modify as required.
*/
/*
    Styling for form 
*/
.form-template-outside {
    padding: 20px;
    flex-grow: 1;
    background-color: var(--accent-color);
    position: relative;
    z-index: 1;
}

/* 
    Styling for subtitle/p above form
*/
.form-template-outside > h2, p {
    text-align: center;
}

.form-template-outside p {
    margin-top: 10px;
}

.form-template-outside > .form-custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
}

.form-custom .form_field_wrapper {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form_field_wrapper > .form_field_title {
    text-align: left;
    width: 100%;
    margin-bottom: 5px;
}

.form_field_wrapper > .form_field_content {
    width: 100%;
}

.form-custom input, .form_field_text, .form_field_select {
    width: 100%;
    padding: 10px;
    outline: none;
    border: solid 3px gray;
    transition: border 0.3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.form-custom input:focus, textarea:focus, select:focus {
    border: solid 3px var(--compliment-color);
}

.form-custom textarea {
    resize: none;
    height: 200px;
}

.form-custom .btn-primary {
    background-color: var(--main-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 2rem;
    transition: background-color 0.3s ease-in-out;
}

.form-custom .btn-primary:hover {
    background-color: var(--compliment-color);
    cursor: pointer;
}

/*****END FORM STYLING*****/

/*****END FORM STYLING*****/


.contact-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    height: fit-content;
}

.contact-wrapper-menu {
    position: sticky;
    top: 0%;
    width: 400px;
    height: 100vh;
    padding: 0px 20px;
    background-color: var(--accent-color);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 2;
}

.contact-info, .hours-of-operation {
    margin-top: 20px;
    text-align: center;
}

.contact-info p, .hours-of-operation p {
    margin: 5px 0;
    color: black;
    font-size: 14px;
}

.contact-info strong, .hours-of-operation strong {
    display: block;
    font-size: 16px;
    color: black;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-info a, .hours-of-operation a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover, .hours-of-operation a:hover {
    text-decoration: underline;
}

.contact-wrapper-menu .hours-of-operation {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.contact-wrapper-menu iframe {
    width: 300px;
    height: 240px;
}

@media (max-width: 1600px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-wrapper-menu {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 20px;
        padding-bottom: 40px;
    }
}