@font-face {
  font-family: 'le jour serif';
  src:  url('/font/Le Jour Serif.ttf') format('truetype');
}
:root {
    --color-lightgreen: #cadcd0;
    --color-green: #97b592;
    --color-medgreen: #5f9772;
    --color-darkgreen: #4c7861;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Lora", serif;
    font-weight: 400;
    font-size: 18px;
    margin: 0;
    line-height: 1.6em;
    scroll-snap-type: y mandatory;
}
* {
    box-sizing: border-box;
}

.grecaptcha-badge {
    bottom: 119px!important;
    z-index: 1200000;
    opacity: 0;
}
.grecaptcha-badge.visible {
    opacity: 1;
}
a {
    text-decoration: none;
    color: inherit;
}

:disabled, [disabled] {
    opacity: 0.5 !important;
    pointer-events: none !important;
}

.logo {
    width: 388px;
    max-width: 95%;
}
#sticky-logo {
    width: 100%;
    position: fixed;
    display: grid;
    place-items: center;
    transform: translateY(-140%);
    transition: transform 1s;
    z-index: 100;
}
#sticky-logo  div.clipfront {
    background-color: var(--color-lightgreen);
    padding-inline: 3em;
    padding-block: 0.5em;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

#sticky-logo div.clipback {
    background-color: rgba(0,0,0,0.3);
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100%;
    position: absolute;
    top: 10px;
    z-index: -10;
    filter: blur(10px);
}
#sticky-logo img {
    height: 3.5em;
}
#sticky-logo.on {
    transform: translateY(0%);
}
.swirl {
    position: absolute;
    width: 560px;
    max-width: 95%;
    left: 2em;
    top: 2em;
    z-index: 0;
}
.blend {
    opacity: 0.2;
}
h1, h2 {
    font-family: 'le jour serif';
    text-transform: uppercase;
    font-weight: 400;
    margin-block: 0.25em;
    text-wrap: balance;
    line-height: 1.2em;
}
h1 {
    font-size: 60px;
    line-height: 1.2em;
}
h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 1em;
}
h3, strong {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}
p {
    margin-bottom: 1.8em;
}
.morespace p {
    margin-bottom: 2.8em;
}
strong {
    letter-spacing: 0.05em;
}
#scrollme {
    color: white;
    position: absolute;
    bottom: 2em;

}
section {
    width: 100%;
    height: 100dvh;
    display: grid;
    place-items: center;
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
}
.container {
    width: 960px;
    max-width: 90vw;
    position: relative;
    z-index: 10;
}
#behind img {
    margin-left: 1em;
}
.center {
    text-align: center;
}
.green {
    background-color: var(--color-green);
    color: white;
}
.lightgreen {
    background-color: var(--color-lightgreen);
    color: var(--color-darkgreen);
}
.medgreen {
    background-color: var(--color-medgreen);
    color: white;
}
.darkgreen {
    background-color: var(--color-darkgreen);
    color: white;
}
.white {
    background-color: white;
    color: var(--color-darkgreen);
}
.two-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(470px, 1fr));
    margin-bottom: 1.25em;
    gap: 1em;
}
.flexarea {
    display: flex;
    align-items: center;
    gap: 0.5em;
    flex-wrap: wrap;
}
label {
    width: 160px;
}
input {
    font-family: "Fira Sans", sans-serif;
    font-size: 1em;
    width: 100%;
    background-color: var(--color-darkgreen);
    color: white;
    padding: 0.5em 1em;
    border-radius: 8px;
    border: none;
    margin: 0;
}
textarea {
    font-family: "Fira Sans", sans-serif;
    font-size: 1em;
    width: 100%;
    background-color: var(--color-darkgreen);
    color: white;
    padding: 1em;
    border-radius: 8px;
    border: none;
    margin-bottom: 1.25em;
    margin-top: 0.5em;
}
input[type="submit"] {
    margin: 0 auto;
    width: fit-content;
    background-color: var(--color-lightgreen);
    color: var(--color-darkgreen);
    border: 1px solid var(--color-darkgreen);
    transition: background-color 0.3s, color 0.3s;
    padding-inline: 2em;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: var(--color-darkgreen);
    color: white;
}
[data-lastpass-icon-root] {
    display: none
}
#navigation {
    position: fixed;
    right: 3em;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    z-index: 100;
}
#navigation.colorup {
    color: var(--color-darkgreen);
}
#navigation a {
    position: relative;
    display: block;
    margin-block: 0.5em;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}
#navigation a span {
    position: absolute;
    right: 10px;
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    white-space: nowrap;
    top: 2px;
    overflow: hidden;
    width: 0;
    transition: width 0.3s;
    text-align: right;
}
#navigation a:hover span, #navigation a.on span {
    width: 200px;
}
#navigation a:after {
    content: '';
    width: 1.5em;
    height: 1.5em;
    display: block;
    border: 4px solid white;
    border-radius: 50%;
    transform: translateX(100%);
    position: relative;
    background-color: transparent;
    transition: background-color 0.3s;
}
#navigation.colorup a:after {
    border-color: var(--color-darkgreen);
}
#navigation a.on:after {
    background-color: rgba(255,255,255,1);
}
#navigation.colorup a.on:after {
    background-color: rgba(76,120,97,1);
}
#navigation a:hover:after {
    background-color: var(--color-green);
}

#sendFeedback {
    text-align: center;
    padding: 10px;
    font-weight: 600;
}

.relative {
    position: relative;
}

footer {
    width: 100%;
    height: 20px;
    background-color: var(--color-darkgreen);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

footer .footer-credit-outer {
    position: fixed;
    z-index: 10;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    transition: 500ms;
    width: fit-content;
    margin: auto;
    filter: drop-shadow(0 -4px 10px rgba(0, 0, 0, 0.3));
}

footer .footer-credit {
    background-color: var(--color-lightgreen);
    padding: 1.5em 1em;
    clip-path: polygon(4% 0, 96% 0, 100% 100%, 0% 100%);
    width: 700px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-align: center;
    z-index: 10;
    font-size: 0.9em;
    color: #375746;
    user-select: none;
}

footer .credit-shadow {
        background-color: rgba(0, 0, 0, 0.3);
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        width: 700px;
        height: 100%;
        position: absolute;
        top: -10px;
        z-index: -10;
        filter: blur(10px);
}

footer .footer-credit img {
    width: 20px;
    height: 20px;
    display: block;
}

footer .footer-credit a {
    color: inherit;
    text-decoration: none;
} footer .footer-credit a:hover {
    text-decoration: underline;
}

footer.visible .footer-credit-outer {
    transform: translateY(0%);
}

@media only screen and (max-width: 760px) {
    footer .footer-credit {
        width: calc(100vw - 60px);
    }
}

@media only screen and (max-width: 614px) {
    #behind img {
        width: 100%;
        margin: 0 0 1em;
    }
    .swirl {
        margin: 0 auto;
        left: auto;
    }
    h1 {
        font-size: 35px;
    }
    h2 {
        font-size: 35px;
    }
    .flexarea {
        width: 90vw;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 1260px) {
    #navigation, #scrollme {
        display: none;
    }
    section {
        height: auto;
        padding-block: 6em;
    }
    #sticky-logo.on {
        top: 0;
    }

}