.contact-section {
    padding: 2rem 0 8rem 20vw;
    background: linear-gradient(75deg, rgba(0, 0, 0, 0) 30vw,
            var(--light) 30vw), url(../img/acrylic_bacground.jpeg);
}

.free-header--contact {
    margin-top: 0;
}

.contact-section__form-field {
    width: 100%;
    padding: 1rem;
    background-color: var(--light);
    border: 1px solid var(--light-grey);
    font-size: 1rem;
    transition: border 0.2s ease-in-out;
}

.contact-section__form-field:hover {
    border: 1px solid var(--orange);
}

.contact-section__form-field:focus {
    border-top: 1px solid var(--yellow);
    border-bottom: 1px solid var(--yellow);
    border-right: 1px solid var(--yellow);
    border-left: 5px solid var(--orange);
    outline: none;
}

.contact-section__form {
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    grid-template-areas:
        "field1 textarea textarea"
        "field2 textarea textarea"
        "field3 textarea textarea"
        "empty submit empty2";
    grid-gap: 1rem;
}

.contact-section__textarea {
    height: 100%;
    max-width: 100%;
    font-family: 'Exo', sans-serif;
    grid-area: textarea;
}

.contact-section__button {
    grid-area: submit;
    height: 3rem;
    font-family: 'Righteous', cursive;
    border: none;
    background-color: var(--yellow);
    color: var(--light);
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: background-color 0.2s ease-in;
}

.contact-section__button:hover {
    background-color: var(--orange);
}

@media (max-width: 960px) {
    .contact-section__form {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-areas:
            "field1"
            "field2"
            "field3"
            "textarea"
            "submit";
        grid-gap: 1rem;
    }

    .contact-section__textarea {
        min-height: 10rem;
        ;
    }

    .contact-section {
        padding-left: 0vw;
    }
}