:root {
    --bg-brown: #2E1210;
    --bg-rose: #EDB395;
    --sep-brown-dark: #290d0a;
    --sep-brown-light: #321613;
    --font-color-light: #907471;
    --font-color-dark: #2e120f;
    --font-footer-light: #4D3431;
    --font-footer-dark: #7F5645;
    --box-shadow: rgba(19, 19, 19, 0.5);
    --font-content: 'EBGaramondRegular';
    --font-header: 'exmouthregular';
}

* {
    margin: 0px;
    padding: 0px;
}

html {
    height: 100%;
}

body {
    background: none repeat scroll 0px 0px #110000;
    font-family: 'EBGaramondRegular';
    font-size: 18px;
    font-weight: 200;
    height: 100%;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: rgb(144, 116, 113);
    text-decoration: none;
    word-break: break-all;
}

h1 {
    font-family: 'exmouthregular';
    font-size: 52px ! important;
    font-weight: 200;
    margin-bottom: 13px;
}

h2 {
    font-size: 28px ! important;
    margin: 40px 0 23px 0;
}

h3 {
    font-size: 25px ! important;
    margin: 37px 0 19px 0;
}

ul {
    margin-left: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.bgrath-white-border {
    border: 7px solid white;
}

.bgrath-box-shadow {
    -webkit-box-shadow: 0px 1px 5px 0px var(--box-shadow);
    -moz-box-shadow: 0px 1px 5px 0px var(--box-shadow);
    box-shadow: 0px 1px 5px 0px var(--box-shadow);
}

.resize-animation-stopper * {
    animation: none !important;
    transition: none !important;
}

#_wrapper {
    z-index: 40;
    position: relative;
    max-width: 1029px;
    margin: 0 auto;
    background-color: #B2836C;
    padding-top: 10px;
    padding-bottom: 20px;
    box-sizing: border-box;
}

#_wrapper::before, #_wrapper::after {
    content: '';
    position: absolute;
    background-color: #220A07;
    left: 0;
    right: 0;
}

#_wrapper::before {
    top: 0;
    height: 165px;
}

#_wrapper::after {
    bottom: 0;
    height: 114px;
}

#_inner-wrapper {
    z-index: 100;
    position: relative;
    margin: 0 2%;
    padding-bottom: 44px;
    border-radius: 6px 6px 6px 6px;
    -moz-border-radius: 6px 6px 6px 6px;
    -webkit-border-radius: 6px 6px 6px 6px;
    box-shadow: 0px 0px 4px 0px rgba(19, 19, 19, 0.5);
    -moz-box-shadow: 0px 0px 4px 0px rgba(19, 19, 19, 0.5);
    -webkit-box-shadow: 0px 0px 4px 0px rgba(19, 19, 19, 0.5);
    background-color: var(--bg-brown);
}

#_inner-wrapper::after {
    content: '';
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 18px;
    width: auto;
    border-top: 2px solid var(--sep-brown-dark);
    border-bottom: 2px solid var(--sep-brown-light);
}

aside {
    position: relative;
    display: block;
    z-index: 60;
    height: 95px;
    left: 0;
    right: 0;
    color: var(--font-color-light);
    padding: 20px 0px 40px 0px;
    text-align: center;
}

.sep {
    display: none;
}

.menu-btn {
    position: relative;
    width: 40px;
    height: 21px;
    border: 0;
    outline: 0;
    background-color: transparent;
    margin-top: 10px;
}

/****************************
***** menu toggle ***********
*****************************/
.menu-btn:hover {
    cursor: pointer;
}

.menu-btn .bar {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--font-color-light);
    position: absolute;
    top: 50%;
}

.menu-btn.menu-btn-open .bar:nth-child(1) {
    margin-top: -10px;
}

.menu-btn.menu-btn-open .bar:nth-child(2) {
    margin-top: -1px;
}

.menu-btn.menu-btn-open .bar:nth-child(3) {
    margin-top: 8px;
}

.menu-btn.menu-btn-close .bar:nth-child(1), .menu-btn.menu-btn-close .bar:nth-child(2) {
    margin-top: -1px;
}

.menu-btn.menu-btn-close .bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-btn.menu-btn-close .bar:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

aside nav {
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--bg-brown);
    text-align: center;
    padding: 30px;
    -webkit-transition: all 0.4s 0s ease;
    -moz-transition: all 0.4s 0s ease;
    -o-transition: all 0.4s 0s ease;
    transition: all 0.4s 0s ease;
}

aside nav.show {
    opacity: 1;
    visibility: visible;
}

aside ul {
    position: relative;
    padding: 30px 30px 10px;
    text-align: center;
    margin-left: 0;
    margin-bottom: 0;
}

aside ul li {
    list-style: none;
    padding: 9px 0;
}

aside ul li.current-menu-item::before {
    content: '> '
}

aside ul li.current-menu-item::after {
    content: ' <'
}

aside ul li:last-child {
    border-bottom: none;
}

aside ul li:first-child {
    border-top: none;
}

aside ul li a {
    text-decoration: none;
    color: var(--font-color-light);
    font-size: 22px;
    font-variant: small-caps;
}

aside ul li a:focus, nav ul li a:visited {
    text-decoration: none;
    color: var(--font-color-light);
}

main {
    z-index: 60;
    padding: 5% 5% 7% 5%;
    background-color: var(--bg-rose);
    flex-grow: 1;
    color: var(--font-color-dark);
}

main p {
    text-align: justify;
    line-height: 136%;
    margin-bottom: 10px;
    /* position: relative; */
}

.gb-container-edbe73ae iframe {
    display: block;
}

.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 textarea {
    border: 1px solid var(--font-color-light);
    font-family: monospace;
    padding: 7px;
    margin: 5px 0;
    outline: none;
    -webkit-appearance: none;
}

.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 textarea {
    width: 100%;
    box-sizing: border-box;
}

.wpcf7-list-item {
    margin-left: 0;
}

.wpcf7-list-item input[name="zustimmung-datenschutz"] ~ span {
    font-size: 14px;
    line-height: 1.0;
    /* display: block; */
}

.wpcf7-submit {
    padding: 5px 25px;
    font-family: var(--font-content);
    font-size: 1.5rem;
    font-variant: small-caps;
    border-radius: 4px;
    border: none !important;
    background-color: var(--bg-brown);
    color: var(--font-color-light);
    -webkit-appearance: none;
}

/*
wheather
*/
#wheather div {
    text-align: center;
    margin: 0 auto;
    font-family: 'EBGaramondRegular';
}

#wheather table {
    background: transparent;
    text-align: center;
    margin: 0 auto;
}

#wheather table tbody tr td {
    padding: 0 7px;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
}

#wheather table tbody tr:nth-child(3) td:nth-child(2) b {
    display: inline-block;
    width: 65px
}

.baguetteBox-button {
    background-color: transparent;
}

.blocks-gallery-grid, .wp-block-gallery {
    justify-content: space-evenly;
}

.blocks-gallery-grid .blocks-gallery-image figure, .blocks-gallery-grid .blocks-gallery-item figure, .wp-block-gallery .blocks-gallery-image figure, .wp-block-gallery .blocks-gallery-item figure {
    border: 2px solid white;
    box-shadow: 0px 1px 2px -1px rgb(105 47 13);
    -moz-box-shadow: 0px 1px 2px -1px rgb(105, 47, 13);
    -webkit-box-shadow: 0px 1px 2px -1px rgb(105 47 13);
}

.blocks-gallery-grid.columns-5 .blocks-gallery-image, .blocks-gallery-grid.columns-5 .blocks-gallery-item, .wp-block-gallery.columns-5 .blocks-gallery-image, .wp-block-gallery.columns-5 .blocks-gallery-item {
    width: 101px;
    flex-grow: 0;
    margin-right: 10px !important;
}

#footer {
    color: var(--font-footer-light);
    font-size: 15px;
    height: 50px;
    margin: 0 2%;
    position: relative;
    font-variant: small-caps;
    box-sizing: border-box;
    z-index: 50;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-shadow: -1px -1px hsl(11 73% 5% / 1)
}

#footer ul {
    margin: 0 !important;
}

#footer ul li {
    display: inline;
}

#footer ul li::after {
    content: ' | '
}

#footer ul li:last-child::after {
    content: ''
}

#footer ul li a {
    text-decoration: underline;
    color: var(--font-footer-light);
}

@media (min-width: 300px) {
    aside {
        position: relative;
        z-index: 60;
        height: 95px;
        left: 0;
        right: 0;
        color: var(--font-color-light);
        padding: 30px 0px 30px 0px;
        /**/
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .sep {
        content: '';
        display: block;
        top: 25px;
        height: 95px;
        right: 150px;
        width: auto;
        border-left: 2px solid var(--sep-brown-dark);
        border-right: 2px solid var(--sep-brown-light);
    }

    .menu-btn {
        position: relative;
        width: 40px;
        height: 21px;
        border: 0;
        outline: 0;
        background-color: transparent;
    }
}

@media (min-width: 472px) {
    #_wrapper {
        padding-top: 20px;
    }

    #_wrapper::after {
        height: 104px;
    }

    #_inner-wrapper {
        margin: 0 20px;
    }

    aside {
        position: relative;
        display: block;
        z-index: 60;
        height: 85px;
        left: 0;
        right: 0;
        color: var(--font-color-light);
        padding: 30px 150px 30px 40px;
        text-align: left;
    }

    .sep {
        content: '';
        position: absolute;
        top: 25px;
        height: 95px;
        right: 150px;
        width: auto;
        border-left: 2px solid var(--sep-brown-dark);
        border-right: 2px solid var(--sep-brown-light);
    }

    .menu-btn {
        position: relative;
        width: 40px;
        height: 21px;
        border: 0;
        outline: 0;
        background-color: transparent;
        margin-top: -11px;
    }

    .menu-btn.menu-btn-open {
        position: absolute;
        top: 72px;
        right: 55px;
    }

    main {
        padding: 40px 40px 50px;
    }

    #footer {
        /* display: flex; */
        justify-content: center;
        margin: 0 25px;
        align-items: center;
        flex-direction: row;
        /* align-content: flex-start; */
        height: 40px;
    }

    #footer div {
        display: inline-block;
        height: auto;
        /* line-height: 1; */
    }

    #footer div::after {
        content: ' | ';
        margin-right: 4px;
    }

    #footer ul {
        display: inline-block;
    }
}

@media (min-width: 860px) {
    #_wrapper {
        padding-top: 30px;
        min-height: 100%;
    }

    #_wrapper::before, #_wrapper::after {
        top: 0;
        bottom: 0;
        height: auto;
    }

    #_wrapper::before {
        left: 0;
        right: auto;
        width: 270px;
    }

    #_wrapper::after {
        right: 0;
        left: auto;
        width: 64px;
    }

    #_inner-wrapper {
        margin: 0 20px;
        padding-bottom: 0;
        padding-right: 44px;
        display: flex;
    }

    #_inner-wrapper::after {
        left: auto;
        right: auto;
        top: 15px;
        bottom: 15px;
        right: 18px;
        width: 0;
        border-top: none;
        border-bottom: none;
        border-left: 2px solid var(--sep-brown-dark);
        border-right: 2px solid var(--sep-brown-light);
    }

    aside {
        z-index: 60;
        height: auto;
        width: 250px;
        color: var(--font-color-light);
        padding: 30px 0;
        text-align: center;
        flex-shrink: 0;
    }

    .sep {
        display: none;
    }

    .menu-btn {
        display: none;
    }

    aside nav {
        display: block;
        position: relative;
        top: auto;
        bottom: auto;
        height: auto;
        padding: 0;
        visibility: visible;
        opacity: 1;
    }

    aside ul {
        width: 190px;
        padding: 8px 30px 10px;
        margin-top: 15px;
        margin-left: 0;
        margin-bottom: 0;
        box-sizing: content-box;
    }

    aside ul::before, nav ul::after {
        content: '';
        position: absolute;
        left: 20px;
        right: 20px;
        height: 0;
        border-top: 2px solid var(--sep-brown-dark);
        border-bottom: 2px solid var(--sep-brown-light);
    }

    aside ul::before {
        top: 0;
    }

    aside ul::after {
        bottom: 0;
    }

    aside ul li {
        list-style: none;
        padding: 9px 0;
        border-top: 2px solid var(--sep-brown-light);
        border-bottom: 1px solid var(--sep-brown-dark);
    }

    aside ul li.current-menu-item::before {
        content: '> '
    }

    aside ul li.current-menu-item::after {
        content: ' <'
    }

    aside ul li:last-child {
        border-bottom: none;
    }

    aside ul li:first-child {
        border-top: none;
    }

    aside ul li a {
        font-size: 18px;
    }

    #footer {
        margin: 0 74px 0 280px;
        color: var(--font-footer-dark);
        text-shadow: 1px 1px rgb(188 142 116);
        justify-content: space-between;
    }

    #footer div::after {
        content: '';
        margin-right: 0;
    }

    #footer ul li a {
        color: var(--font-footer-dark);
    }
}
