@media screen and (min-width: 0rem) { 
    .contact-hero {
        width: 100%;
        margin-top: 75px;
        position: relative;
    }

    .contact-hero-content {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .contact-hero-content .eyebrow-text {
        color: #C5C287;
    }

    .contact-hero-content .eyebrow-text-image-left, .contact-hero-content .eyebrow-text-image-right {
        fill: #C5C287;
    }

    .contact-hero-content .title {
        color: white;
    }


    .contact-hero .hero-image-container {
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 400px;
        top: 0;
    }

    .contact-hero .hero-image {
        min-width: 60rem;
        position: relative;
        object-fit: cover;
        width: 100%;
        height: 100%;
        object-position: center center;
    }


    /* CONTACT */
    .contact {
        margin-top: 60px;
        max-width: 42rem;
        margin-inline: auto;
    }

    .contact-title {
        margin-bottom: 32px;
    }

    .contact-form-container {
        padding: 32px;
        background: url("/public/contact/contact-background.jpg");
        margin: 0 32px;
        margin-bottom: 32px;
    }

    .contact-form-section {
        margin-bottom: 32px;
    }

    .contact-form-section .form-field-name {
        font-weight: bold;
    }

    .contact-form-section .form-field {
        border: none;
        width: 100%;
        padding-block: 14px;
        padding-inline: 8px;
        margin-top: 8px;
    }

    .contact textarea {
        resize: none;
    }

    #button {
        padding-inline: 48px;
        margin: 8px auto;
        display: flex;
    }

    .contact-content {
        text-align: center;
        margin-bottom: 32px;
    }

    .contact-content .title {
        font-size: clamp(48px, 4.5vw ,56px);
    }

    .contact-content .description {
        max-width: 100%;
    }

    .contact-map {
        height: 200px;
        max-width: 100%;
        display: flex;
        margin-inline: 32px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .contact-map iframe {
        width: 100%;
        height: 100%;
        filter: grayscale(45%);
        margin: 0px;
    }
}

@media screen and (min-width: 64rem) {
    .contact-hero picture {
        width: 100%;
    }
    .contact {
        max-width: 80rem;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        column-gap: 48px;
        padding-inline: 32px;
    }

    .contact > *:nth-child(2) { /* Selects the second child inside .contact */
        grid-row: 1 / span 2; /* Makes it take up 2 rows */
    }

    .contact-form-container {
        margin: 0;
    }

    #button {
        margin-inline: 0px;
    }

    .contact-content {
        text-align: start;
    }

    .eyebrow-text-container {
        justify-content: start;
    }

    .contact-map {
        height: auto;
        margin-inline: 0px;
    }
}