#contact {
}

#contactHeader {
    height: 600px;
    background-image: url("/assets/img/contact/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#contactHeader {

}

#contactHeaderTitle {
    font: normal normal bold 52px/54px Eames Century Modern;
    color: white;
    text-align: center;
    margin: 0 0 60px;
}

#contactHeaderFAQ {
    background-image: url("/assets/img/contact/green.jpg");
    background-size: cover;
    background-position: center;
    padding: 48px 20px;
    width: 100%;
    max-width: 600px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#contactHeaderFAQTitle {
    font-size: 32px;
    line-height: 44px;
    font-weight: bold;
    font-family: Eames Century Modern;
    color: white;
    text-align: center;
    margin: 0 0 4px;
}

#contactHeaderFAQSubtitle {
    font-size: 21px;
    line-height: 24px;
    text-align: center;
    color: white;
    margin-bottom: 27px;
}

#contactHeaderFAQLink {
    background-color: white;
    color: var(--primary-green);
    border: 2px solid black;
}

#contactBody {
    background-image: url("/assets/img/contact/wood.jpg");
    background-repeat: repeat;
    padding: 180px 20px 100px;
}

#contactBodyTitle {
    margin: 0 0 40px;
    color: var(--primary-green);
    font: normal normal bold 24px/44px Eames Century Modern;
    text-align: center;
}

#contactBodyNav {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
    overflow-y: auto;
}

.contactBodyNavItem {
    padding: 15px 5px;
    flex-grow: 1;
    background-color: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.contactBodyNavItem.active,
.contactBodyNavItem:hover {
    background-color: var(--primary-green);
    color: white;
}

.contactBodyForm {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    background-color: white;
    border: 1px solid var(--primary-green);
    display: none;
    border-radius: 6px;
}

.contactBodyForm.active {
    display: block;
}

.contactBodyFormInner {
    max-width: 360px;
    margin: auto;
}

.contactBodyFormTitle {
    color: var(--primary-green);
    font: normal normal bold 24px/44px Eames Century Modern;
    margin: 0 0 40px;
    text-align: center;
}

.contactBodyForm [name] {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid var(--mediumgrey);
    font-size: 16px;
    color: var(--darkgrey);
    margin-bottom: 10px;
}

.contactBodyForm [name]::placeholder {
    color: var(--darkgrey);
}

.contactBodyForm label {
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    text-align: center;
}

.contactBodyForm button {
    margin-top: 10px;
}


#contactBodySuccess {
    max-width: 1200px;
    margin: auto;
    padding: 90px 20px;
    background-color: white;
    border: 1px solid var(--primary-green);
    display: none;
    border-radius: 6px;
}

#contactBodySuccess.active {
    display: block;
}

#contactBodySuccessTitle {
    font-size: 38px;
    line-height: 44px;
    font-family: Eames Century Modern;
    color: var(--primary-green);
    text-align: center;
}

@media (max-width: 800px) {

    #contactHeader {
        height: 400px;
        background-image: url("/assets/img/contact/hero-mobile.jpg");
    }

    #contactHeaderTitle {
        font-size: 26px;
        margin: 0 0 100px;
    }

    #contactHeaderFAQ {
        max-width: calc(100vw - 30px);
    }

    #contactHeaderFAQTitle {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 32px;
    }

    #contactHeaderFAQSubtitle {
        font-size: 18px;
        line-height: 24px;
    }

    #contactBody {
        padding: 150px 0 80px;
    }

    #contactBodyTitle {
        font-size: 24px;
        line-height: 32px;
        max-width: 260px;
        margin: 0 auto 33px;
    }

    #contactBodyNav {
        padding: 0 20px;
        flex-direction: column;
        gap: 5px;
    }

    .contactBodyNavItem {
        padding: 16px 24px;
        line-height: 1;
        white-space: nowrap;
    }

    .contactBodyForm {
        border-radius: 0;
        padding: 30px 20px;
    }

    .contactBodyFormTitle {
        line-height: 1;
        margin-bottom: 30px;
    }


}