/* =========================================================
   GLOBAL
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #222;
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    width: 100%;

    border-bottom: 1px solid #ddd;

    background: #fff;
}

.site-header__inner {
    width: min(
        1200px,
        calc(100% - 40px)
    );

    min-height: 70px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.site-logo {
    font-size: 22px;

    font-weight: 700;
}

.site-nav {
    display: flex;

    gap: 25px;
}

.site-nav a:hover {
    text-decoration: underline;
}


/* =========================================================
   MAIN
   ========================================================= */

.site-main {
    width: 100%;

    min-height: 500px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    margin-top: 60px;

    border-top: 1px solid #ddd;

    background: #f5f5f5;
}

.site-footer__inner {
    width: min(
        1200px,
        calc(100% - 40px)
    );

    margin: 0 auto;

    padding: 30px 0;
}

.site-footer p {
    margin: 0;
}


/* =========================================================
   HOME PAGE
   ========================================================= */

.home {
    width: min(
        1200px,
        calc(100% - 40px)
    );

    margin: 0 auto;

    padding: 80px 0;
}

.home__heading {
    margin-top: 0;

    font-size: 48px;
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact {
    width: min(
        700px,
        calc(100% - 40px)
    );

    margin: 0 auto;

    padding: 60px 0;
}

.contact__inner {
    width: 100%;
}

.contact__heading {
    margin-top: 0;

    margin-bottom: 15px;
}

.contact__intro {
    margin-top: 0;

    margin-bottom: 35px;
}

.contact__form {
    width: 100%;
}

.contact__form-group {
    margin-bottom: 20px;
}

.contact__label {
    display: block;

    margin-bottom: 7px;

    font-weight: 600;
}

.contact__input,
.contact__textarea {
    width: 100%;

    padding: 12px;

    border: 1px solid #bbb;

    border-radius: 3px;

    font: inherit;

    background: #fff;

    color: #222;
}

.contact__input:focus,
.contact__textarea:focus {
    outline: 2px solid #999;

    outline-offset: 1px;
}

.contact__textarea {
    min-height: 180px;

    resize: vertical;
}

.contact__actions {
    margin-top: 25px;
}

.contact__button {
    padding: 12px 25px;

    border: 0;

    border-radius: 3px;

    background: #222;

    color: #fff;

    font-size: 16px;

    cursor: pointer;
}

.contact__button:hover {
    background: #444;
}

.contact__message {
    padding: 15px;

    margin-bottom: 25px;

    border: 1px solid;
}

.contact__message h2 {
    margin-top: 0;
}

.contact__message p {
    margin-bottom: 0;
}

.contact__message--success {
    background: #e8f5e9;

    border-color: #b7d8ba;
}

.contact__message--error {
    background: #ffebee;

    border-color: #e0b4b4;
}

.contact__honeypot {
    position: absolute;

    left: -10000px;

    width: 1px;

    height: 1px;

    overflow: hidden;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 700px) {

    .site-header__inner {
        flex-direction: column;

        align-items: flex-start;

        padding: 20px 0;
    }

    .site-nav {
        margin-top: 15px;
    }

    .home {
        padding: 50px 0;
    }

    .home__heading {
        font-size: 36px;
    }

    .contact {
        padding: 40px 0;
    }

}

/* =========================================================
   CONTACT TURNSTILE
   ========================================================= */

.contact__turnstile {
    margin-top: 25px;
    margin-bottom: 10px;
}
