:root{
    --primary: #2D3931;
    --secondary: #BDA775;
    --dark-green: #6A8523;
    --light-green: #D8E9AB;
    --white: #FFFFFF;
    --transparent-green: #d9e9ab30;
}

::selection {
    background: var(--secondary);
    color: #fff;
}

::-moz-selection {
    background: var(--secondary);
    color: #fff;
}

html {
    scroll-padding-top: 140px; 
}

.bg-dark {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

h1 {
    font-family: "Figtree", serif;
    font-weight: 1000 !important;
    color: var(--primary) !important;
}

h2 {
    color: var(--dark-green)!important;
}


h3 {
    color: var(--primary) !important;
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
}

h4 {
    color: var(--light-green)!important;
}

p {
    font-family: "Jost", serif;
    font-size: 18px;
    font-weight: 330;
}

.navbar-nav {
    font-family: "Figtree", serif !important;
    font-size: 20px;
    gap: 1rem;
}

.nav-item-underline {
    @media (max-width: 575.98px) {
        border-bottom: 0.5px solid var(--dark-green);
    }
}

.align_center {
    text-align: center;
}

.un-p{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.un-shadow-dec {
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.15)
}

.double-custom-underline {
    position: relative;
    display: inline-block;
    z-index: 2;
}

.double-custom-underline::before {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 100%;
    height: 13px;
    z-index: 1;
    background-color: var(--primary);
}

.double-custom-underline::after {
    content: '';
    position: absolute;
    bottom: -19px;
    left: 10px;
    width: 100%;
    height: 13px;
    background-color: var(--secondary);
}

h2.custom-green-underline {
    position: relative;
    display: inline-block;
    box-shadow: inset 0 -13px 0 0 var(--transparent-green);
}

.behind {
    z-index: -2;
}

footer a{
    color: var(--white);
}

footer .footer-logo{
    height: 150px;
}

footer .name_logo{
    color: var(--secondary) !important;
    font-family: "Figtree", serif;
    font-weight: 1000 !important;
}

@media screen and (max-width: 576px){
    footer .footer-logo{
        height: 100px;
    }
}

.contact-r *, .contact-l *{
    font-family: "Figtree", serif;
}

.contact-r h2, .contact-l h2{
    font-weight: 1000;
}

.contact-r h2,
.contact-r input,
.contact-r form::placeholder,
.contact-r input::placeholder,
.contact-r textarea::placeholder{
    color: var(--primary) !important;
}

.contact-r input,
.contact-r textarea,
.contact-r{
    background-color: var(--light-green);
}

.contact-r input, .contact-r textarea{
    border: 1px solid var(--primary);
    border-radius: 0;
}

.contact-r button{
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    border-radius: 0;
    font-weight: 500;
}

.contact-r button:hover{
    background-color: var(--primary);
    color: var(--light-green);
}

.contact-r input:focus, .contact-r textarea:focus{
    background-color: var(--light-green);
}

.contact-r input:focus,
.contact-r textarea:focus {
    outline: 2px solid var(--primary);
    box-shadow: none;
}

.background-overlay {
    background-color: var(--secondary);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate(10px, 10px);
    z-index: -1;
}

.tableHeader {
    background-color: var(--primary);
    color: var(--light-green);
}

.colorDecent {
    background-color: var(--transparent-green);
}

.navbuttons{
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    border-radius: 0;
    font-weight: 350;
    padding: 10px;
    text-decoration: none;
    text-decoration: underline rgba(255, 255, 255, 0);
    transition: text-decoration-color 300ms;
}

.navbuttons:hover{
    text-decoration-color: var(--white);
    color: var(--white);
}

.back-btn{
    color: rgb(137, 137, 137);
}
.back-btn:hover{
    color: var(--primary);
}

.weiterlesen{
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    border-radius: 0;
    font-weight: 350;
    padding: 10px;
    text-decoration: underline rgba(255, 255, 255, 0);
    transition: text-decoration-color 300ms;
}

.weiterlesen:hover{
    text-decoration: underline;
    color: var(--white);
}

.alle-beitraege{
    background-color: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
    border-radius: 0;
    font-weight: 350;
    padding: 10px;
    text-decoration: underline rgba(255, 255, 255, 0);
    transition: text-decoration-color 300ms;
    position: relative;
    z-index: 1;
}

.alle-beitraege:hover{
    text-decoration: underline;
    color: var(--white);
}

.alle-beitraege::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 8px;
    width: 100%;
    height: 42px;
    background-color: var(--secondary);
    z-index: -1;
}

.footer{
    background-color: var(--primary);
    color: #fff;
}

.footer-title{
    color: var(--secondary);
}

.footer a:hover{
    color: var(--secondary) !important;
}

.img-hero {
    height: 80vh;
    width: 100vw;
    object-fit: cover;
    object-position: top top;
}

@media screen and (max-width: 576px){
    .img-hero{
        height: 60vh;
    }
}

.anchorrr{
    scroll-margin-top: 200px;
}
@media screen and (max-width: 576px){
    .anchorrr{
        scroll-margin-top: 300px;
    }
}

.product-title-wrapper {
    position: relative;
    display: inline-block;
}

.product-title{
    color: var(--secondary) !important;
    background-color: var(--primary);
    display: inline-block;
    position:relative;
    z-index: 1;
}

.needs a {
    color: var(--secondary) !important;
    text-decoration: none !important;
}

.needs a:hover {
    color: var(--secondary) !important;
    text-decoration: underline !important;
}

.un-shadow {
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.15);
}

.un-shadow-green {
    box-shadow: 0px 10px 24px rgba(42, 45, 43, 0.15);
}