/* LH CSS Frameword
Font-weights 300, 400, 600, 700
*/
:root {
    --font-main: 'Josefin Sans';
    --font-heading: 'Playfair Display';
    --bg-color: #EDE7E6;
    --color-dark: #171717;
    --color-light: #EDE7E6;
    --color-darker: #D9D9D9;
    --primary-color: #a05a2c;
    --font-color-dark: #000000;
    --font-color-light: #3A3A3A;
    --font-color-white: #FFFFFF;
    --section-bg-light: rgba(160, 90, 44, 0.3);
    --section-bg-dark: rgba(160, 90, 44, 0.9);
    --font-size-heading1: clamp(2.25rem, 2vw + 1.8rem, 3rem);
    --font-size-heading2: clamp(2rem, 2vw + 1.6rem, 2.7rem);
    --font-size-heading3: clamp(1.7rem, 2vw + 1.35rem, 2.25rem);
    --font-size-heading4: clamp(1.5rem, 2vw + 1.2rem, 2rem);
    --font-size-text: clamp(1rem, 2vw + 0.7rem, 1.125rem);
    --font-size-bigger: clamp(1.25rem, 2vw + 0.8rem, 1.375rem);
    --border-radius: 0.2rem;
    --space-sml: 1rem;
    --space-medium: 1.375rem;
    --space-large: 2rem;
    --space-xlarge: 3rem;
    --static-page-width: 62.5rem;
    --menu-height: 5rem;
    --menu-padding: 0.125rem;
    --shadow: rgba(0, 0, 0, .117647) 0 1px 3px;
    --light-overlay: rgba(255, 255, 255, 0.8);
}

/** Utilities **/
body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.lh-footer {
    margin-top: auto;
}

.lh-full-vh {
    height: 100vh;
}

.lh-full-vh-menu {
    min-height: calc(100vh - var(--menu-height));
}

.lh-bgdark {
    background-color: var(--section-bg-dark);
}

.lh-bglight {
    background-color: var(--section-bg-light);
}

.lh-bgdarker {
    background-color: var(--color-darker);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--font-color-dark);
    line-height: 1.2;
    font-family: var(--font-heading);
}

p {
    color: var(--font-color-light);
    font-size: var(--font-size-text);
}

h1 {
    font-size: var(--font-size-heading1)
}

h2 {
    font-size: var(--font-size-heading2)
}

h3 {
    font-size: var(--font-size-heading3);
}

h4 {
    font-size: var(--font-size-heading4);
}

h5 {
    font-size: var(--font-size-bigger);
}

.lh-font-dark {
    color: var(--font-color-dark);
}

.lh-font-white {
    color: var(--font-color-white) !important;
}

.lh-gap-sml {
    gap: 1rem;
}

.lh-gap-lg {
    gap: 2rem;
}

.lh-full-width {
    width: 100%;
}

.lh-full-height {
    height: 100%;
}

.lh-half-width {
    width: 50%;
}

.lh-grid-col3,
.lh-grid-col2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lh-grid-col>div {
    width: 100%;
}

.lh-featured-text {
    color: var(--primary-color);
}

.lh-featured-underline {
    text-decoration-line: underline;
    text-decoration-color: var(--primary-color);
    text-underline-offset: 4px;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 2px;
}

.lh-text-h1 {
    font-size: var(--font-size-heading1);
    line-height: 1.2;
}

.lh-text-h2 {
    font-size: var(--font-size-heading2);
    line-height: 1.2;
}

.lh-text-h3 {
    font-size: var(--font-size-heading3);
    line-height: 1.2;
}

.lh-text-h4 {
    font-size: var(--font-size-heading4);
    line-height: 1.2;
}

.lh-text-bigger {
    font-size: var(--font-size-bigger);
}

.lh-font-light {
    font-weight: 300;
}

.lh-font-regular {
    font-weight: 400;
}

.lh-font-semi {
    font-weight: 600;
}

.lh-font-bold {
    font-weight: 700;
}

.lh-flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.lh-justify-between {
    justify-content: space-between;
    gap: var(--space-medium);
}

.lh-justify-center {
    justify-content: center;
}

.lh-align-end {
    align-items: flex-end;
}

.lh-align-center {
    align-items: center;
}

.lh-text-right {
    text-align: right;
}

.lh-text-center {
    text-align: center;
}

.lh-padded {
    padding: var(--space-large);
}

.lh-padded-sml {
    padding: var(--space-sml);
}

.lh-pt-sml {
    padding-top: var(--space-sml);
}

.lh-pt-medium {
    padding-top: var(--space-medium);
}

.lh-pt-large {
    padding-top: var(--space-large);
}

.lh-pb-sml {
    padding-bottom: var(--space-sml);
}

.lh-pb-medium {
    padding-bottom: var(--space-medium);
}

.lh-pb-large {
    padding-bottom: var(--space-large);
}

.lh-mt-sml {
    margin-top: var(--space-sml);
}

.lh-mt-medium {
    margin-top: var(--space-medium);
}

.lh-mt-large {
    margin-top: var(--space-large);
}

.lh-mb-sml {
    margin-bottom: var(--space-sml);
}

.lh-mb-medium {
    margin-bottom: var(--space-medium);
}

.lh-mb-large {
    margin-bottom: var(--space-large);
}

.lh-flex-reverse {
    flex-direction: column-reverse;
}

.lh-margin-auto {
    margin: 0 auto;
}

.lh-margin-0 {
    margin: 0;
}

.lh-text-uppercase {
    text-transform: uppercase;
}

.lh-page-section>div {
    max-width: var(--static-page-width);
    padding-top: 0px;
    position: relative;
}

a:not(.lh-button) {
    text-decoration: underline;
    color: var(--primary-color);
    white-space: nowrap;
}

/** Components **/
.lh-page-heading-section {
    background-color: var(--primary-color);
    color: var(--font-color-white);
    width: 100%;
    padding-top: var(--space-medium);
    padding-bottom: var(--space-medium);
    margin-top: var(--space-xlarge);
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.lh-page-heading-section h1 {
    color: var(--font-color-white);
}

.lh-motto {
    font-size: var(--font-size-heading4);
    font-weight: 300;
    padding-bottom: var(--space-medium);
    font-family: var(--font-main);
}

.lh-button {
    color: var(--font-color-white);
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: calc(0.8 * var(--space-sml)) calc(5 * var(--space-sml));
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: background-color 0.2s ease;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.lh-button--secondary {
    background-color: transparent;
    color: var(--primary-color);
}

.lh-button:hover {
    color: var(--primary-color);
    background-color: transparent;
}

.lh-button--secondary:hover {
    color: var(--font-color-white);
    background-color: var(--primary-color);
}

.lh-copyright:not(.ct-section),
.lh-copyright>.ct-section-inner-wrap {
    padding-top: var(--space-sml);
    padding-bottom: var(--space-sml);
}

.lh-section-header {
    padding-bottom: var(--space-large);
    width: 100%;
}

.lh-section-footer {
    padding-top: var(--space-large);
    width: 100%;
}

.lh-footer-links {
    align-items: normal;
    padding-left: calc(var(--space-xlarge) * 2);
}

.lh-footer-logo {
    margin: 0 auto;
}

.lh-footer-heading {
    color: var(--font-color-white);
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: var(--space-medium);
}

.lh-footer-link {
    color: var(--font-color-white);
    text-decoration: underline;
    font-size: var(--font-size-text);
}

.lh-divider {
    height: 5px;
    background-color: var(--primary-color);
}

.lh-button-wrapper {
    display: flex;
    gap: var(--space-medium);
    align-items: center;
}

.lh-card {
    border-radius: var(--border-radius);
    background: rgba(131, 131, 131, 0.36);
    padding: 2rem;
    height: 100%;
}

.lh-card--title {
    font-size: var(--font-size-heading4);
    color: var(--font-color-dark);
    font-weight: 700;
    width: 100%;
    text-align: center;
}


.lh-contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.lh-contact-form label {
    display: block;
}

.lh-contact-form input:not(.lh-button),
.lh-contact-form select,
.lh-contact-form textarea,
.lh-smartemailing-form input:not([type="submit"]) {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-darker);
    padding: 10px;
    background-color: transparent;
}

.lh-contact-form label {
    padding-top: calc(var(--space-sml) / 2);
    padding-bottom: calc(var(--space-sml) / 2);
}

.lh-contact-form .wpcf7-submit {
    margin-top: 1rem;
}

.lh-archive-repeater {
    position: relative;
    padding-bottom: calc(var(--space-xlarge) * 2);
}

.lh-archive-repeater .oxy-repeater-pages-wrap {
    position: absolute;
    bottom: 0;
    margin: auto;
    left: 50%;
    transform: translateX(-50%);
}

.lh-archive-repeater .oxy-repeater-pages-wrap .page-numbers {
    font-size: var(--font-size-bigger);
    padding: calc(var(--space-sml) / 2) var(--space-sml);
}

.lh-archive-repeater .oxy-repeater-pages-wrap .next,
.lh-archive-repeater .oxy-repeater-pages-wrap .prev {
    display: none;
}

.lh-archive-repeater .oxy-repeater-pages-wrap .page-numbers.current {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    color: var(--font-color-white);
}

.lh-archive-repeater .oxy-repeater-pages-wrap .oxy-repeater-pages {
    gap: var(--space-medium);
}

.lh-background-right {
    position: absolute;
    left: 40%;
    width: 60%;
    height: 100%;
    background-repeat: no-repeat;
    top: 380px;
    border: 25px solid white;
    border-right: 0px;
}

.lh-footer-section {
    z-index: 2;
    position: relative;
}

.lh-experience-grid {
    display: flex;
}

.lh-review-profile-img {
    border-radius: 50%;
}

/** Responsivity **/
.lh-desktop-only {
    display: none;
}

@media screen and (min-width:576px) {
    .lh-button-wrapper {
        flex-direction: row;
    }

    .lh-footer-links {
        padding-left: calc(var(--space-xlarge) * 3);
    }
}

@media screen and (min-width:768px) {
    .lh-gap-lg {
        gap: 4.375rem;
    }

    .lh-gap-sml {
        gap: 2rem;
    }

    .lh-grid-col3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        align-items: normal;
    }

    .lh-card--title {
        height: 77px;
    }

}

@media screen and (min-width:992px) {
    .lh-desktop-only {
        display: flex;
    }

    .lh-mobile-only {
        display: none;
    }

    .lh-grid-col2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        align-items: normal;
    }

    .lh-footer-links {
        padding-left: 0;
    }

}

@media screen and (min-width:1200px) {
    .lh-grid-col3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: auto;
        align-items: normal;
    }
}