.contact-columns {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5%;
}

.social-links {
    display: flex;
    flex-direction: row;
    align-content: space-evenly;
    justify-content: space-evenly;
    width: fit-content;
}

.social-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.link-icon {
    display: inline-block;
    transition: content 2s;
}

#ig-link > .link-icon:hover {
    content:url(/static/images/instagram-red.svg)
}

#fb-link > .link-icon:hover {
    content:url(/static/images/facebook-red.svg)
}

#substack-link > .link-icon:hover {
    content:url(/static/images/substack-red.svg)
}

#bsky-link > .link-icon:hover {
    content:url(/static/images/bluesky-red.svg)
}

#threads-link > .link-icon:hover {
    content:url(/static/images/threads-red.svg)
}

input {
    font-family: var(--fnt-link);
    border: 2px solid var(--col-bg-cream);
}

textarea {
    font-size: 25px;
    font-family: var(--fnt-link);
    height: 250px;
    border: 2px solid var(--col-bg-cream);
    resize: vertical;
}

label {
    font-family: var(--fnt-link);
    font-size: 25px;
    margin-top: 25px;
    color: var(--col-text);
}

label:first-child {
    margin-top: 0;
}

.form-button {
    background-color: var(--col-bg-cream);
    color: var(--col-text-red);
    font-family: var(--fnt-link);
    font-size: 25px;
    width: 40%;
    height: 45px;
    margin: 25px auto 0;
    border: none;
}

.form-button:hover {
    font-weight: bold;
    filter: drop-shadow(3px 3px 0px #000000);
}

#newsletter-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

#newsletter-email {
    height: 35px;
    font-family: var(--fnt-body);
    border: 2px solid var(--col-bg-cream);
}

#newsletter-submit {
    height: 35px;
    font-family: var(--fnt-link);
    font-size: 25px;
    background-color: var(--col-bg-cream);
    color: var(--col-text-red);
    border: none;
    margin-top: 2rem;
}

#newsletter-submit:hover {
    font-weight: bold;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 2rem;
}

.recaptcha-container div {
    display: inline-block;
}

@media only screen and (max-width: 599px) {
    .contact-columns {
        max-width: 85%;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        margin: 15px 0;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        align-self: self-start;
        margin-bottom: 50px;
    }

    input {
        height: 35px;
        width: 350px;
    }

    textarea {
        width: 350px;
    }

    .newsletter-banner {
        width: 100%;
        margin: 35px auto 35px;
    }

    .newsletter-banner h2 {
        font-size: 25px;
    }

    #newsletter-email {
        width: 90%;
        font-size: 15px;
    }

    #newsletter-submit {
        width: 25%;
        font-size: 20px;
    }
}

@media only screen and (min-width: 600px) and (max-width: 767px) {
    .contact-columns {
        max-width: 85%;
    }

    .social-links {
        gap: 20px;
    }

    .social-links a {
        margin: 15px 0;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }

    .contact-form h2 {
        margin: 0 auto 10px;
    }

    input {
        height: 35px;
        width: 500px;
    }

    textarea {
        width: 500px;
    }

    .newsletter-banner {
        width: 100%;
        margin: 50px auto;
    }

    .newsletter-banner h2 {
        margin-top: 0;
    }

    #newsletter-email {
        width: 90%;
        font-size: 20px;
    }

    #newsletter-submit {
        width: 25%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .contact-columns {
        max-width: 90%;
    }

    .social-links a {
        margin: 20px 20px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }

    input {
        height: 35px;
        width: 650px;
    }

    textarea {
        width: 650px;
    }

    .newsletter-banner {
        width: 650px;
        margin: 75px auto 100px;
    }

    #newsletter-email {
        width: 90%;
        font-size: 20px;
    }

    #newsletter-submit {
        width: 20%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .contact-columns {
        max-width: 90%;
    }

    .social-links a {
        margin: 20px 20px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }

    input {
        height: 45px;
        width: 500px;
        font-size: 25px;
    }

    textarea {
        width: 500px;
    }

    .newsletter-banner {
        width: 75%;
        margin: 75px auto 100px;
    }

    #newsletter-email {
        width: 90%;
        font-size: 20px;
    }

    #newsletter-submit {
        width: 45%;
    }
}

@media only screen and (min-width: 1200px) {
    .contact-columns {
        max-width: 1730px;
        width: 65%;
    }

    .social-links a {
        margin: 20px 20px;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        align-self: self-start;
        margin: 0 auto 100px;
    }

    input {
        height: 45px;
        width: 700px;
        font-size: 25px;
    }

    textarea {
        width: 700px;
    }

    .newsletter-banner {
        max-width: 1730px;
        margin: 100px auto 100px;
    }

    #newsletter-email {
        width: 90%;
        font-size: 20px;
    }

    #newsletter-submit {
        width: 25%;
    }
}