/* Footer */
#footer-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 7vw;
    margin: 0 auto;
    padding: 50px 0;
}

#footer-menu {
    display: flex;
    flex-direction: column;
}

#footer-info {
    display: flex;
    flex-direction: column;
}

#footer-info p,
#footer-menu p,
#footer-contact p {
    font-family: "Livvic", Helvetica;
    font-weight: 600 !important;
    color: #000000;
    font-size: 24px;
    letter-spacing: 0.48px;
    line-height: 28.8px;
    padding: 10px 5px;
}

#footer-info div,
#footer-info a,
#footer-menu a {
    margin: 5px;
    color: black;
    font-family: var(--paragraph-body-text-font-family);
    font-weight: var(--paragraph-body-text-font-weight);
    font-size: var(--paragraph-body-text-font-size);
    letter-spacing: var(--paragraph-body-text-letter-spacing);
    line-height: var(--paragraph-body-text-line-height);
    white-space: nowrap;
    font-style: var(--paragraph-body-text-font-style);
    cursor: pointer;
}

#footer-info div:hover,
#footer-info a:hover,
#footer-menu a:hover {
    /* appearance */
    opacity: 0.8;
}

/* Form */

#footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 95%;
}

#footer-contact form {
    display: flex;
}

#mailing-list {
    width: 100%;
}

#footer-contact .name,
#footer-contact .email {
    width: 70%;
    padding: 20px;
    margin: 5px;
    background-color: #e4e7eb;
    border-radius: 10px;
    border: none;
    outline: none;
}

#footer-contact input::placeholder {
    font-family: var(--paragraph-body-text-font-family);
    font-weight: var(--paragraph-body-text-font-weight);
    color: var(--cold-grey30);
    font-size: var(--paragraph-body-text-font-size);
    letter-spacing: var(--paragraph-body-text-letter-spacing);
    line-height: var(--paragraph-body-text-line-height);
    white-space: nowrap;
    font-style: var(--paragraph-body-text-font-style);
}

#submit-button {
    padding: 20px;
    margin: 5px;
    border-radius: 10px;
    width: fit-content;
    height: inherit;
    font-family: var(--paragraph-body-text-font-family);
    font-weight: var(--paragraph-body-text-font-weight);
    color: #ffffff;
    font-size: var(--paragraph-body-text-font-size);
    text-align: center;
    letter-spacing: var(--paragraph-body-text-letter-spacing);
    line-height: var(--paragraph-body-text-line-height);
    white-space: nowrap;
    font-style: var(--paragraph-body-text-font-style);
    background-color: var(--color-green);
    cursor: pointer;
    transition: background-color 200ms ease-out;
    border: none;
    outline: none;
}

/* Footer & Bottom Image */
.footer-container-bottom {
    position: relative;
    text-align: center;
}

.bottom-image {
    width: 100%;
    height: auto;
    min-height: 120px;
    display: block;
}

.footer-copyright {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    font-size: 14px !important;
    font-family: var(--paragraph-body-text-font-family);
    font-weight: var(--paragraph-body-text-font-weight);
    font-size: var(--paragraph-body-text-font-size);
    letter-spacing: var(--paragraph-body-text-letter-spacing);
    line-height: var(--paragraph-body-text-line-height);
    font-style: var(--paragraph-body-text-font-style);
}

@media screen and (max-width: 566px) {
    .footer-copyright {
        font-size: 8px !important;
    }
}