@import url("/assets/fonts/fontawesome/css/all.min.css");

/* hind-300 - latin */
@font-face {
    font-family: "Hind";
    font-style: normal;
    font-weight: 300;
    src: url("/assets/fonts/google/hind-v16-latin-300.eot"); /* IE9 Compat Modes */
    src: local(""),
        url("/assets/fonts/google/hind-v16-latin-300.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("/assets/fonts/google/hind-v16-latin-300.woff2")
            format("woff2"),
        /* Super Modern Browsers */
            url("/assets/fonts/google/hind-v16-latin-300.woff") format("woff"),
        /* Modern Browsers */ url("/assets/fonts/google/hind-v16-latin-300.ttf")
            format("truetype"),
        /* Safari, Android, iOS */
            url("/assets/fonts/google/hind-v16-latin-300.svg#Hind")
            format("svg"); /* Legacy iOS */
}
/* hind-regular - latin */
@font-face {
    font-family: "Hind";
    font-style: normal;
    font-weight: 400;
    src: url("/assets/fonts/google/hind-v16-latin-regular.eot"); /* IE9 Compat Modes */
    src: local(""),
        url("/assets/fonts/google/hind-v16-latin-regular.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("/assets/fonts/google/hind-v16-latin-regular.woff2")
            format("woff2"),
        /* Super Modern Browsers */
            url("/assets/fonts/google/hind-v16-latin-regular.woff")
            format("woff"),
        /* Modern Browsers */
            url("/assets/fonts/google/hind-v16-latin-regular.ttf")
            format("truetype"),
        /* Safari, Android, iOS */
            url("/assets/fonts/google/hind-v16-latin-regular.svg#Hind")
            format("svg"); /* Legacy iOS */
}
/* hind-600 - latin */
@font-face {
    font-family: "Hind";
    font-style: normal;
    font-weight: 600;
    src: url("/assets/fonts/google/hind-v16-latin-600.eot"); /* IE9 Compat Modes */
    src: local(""),
        url("/assets/fonts/google/hind-v16-latin-600.eot?#iefix")
            format("embedded-opentype"),
        /* IE6-IE8 */ url("/assets/fonts/google/hind-v16-latin-600.woff2")
            format("woff2"),
        /* Super Modern Browsers */
            url("/assets/fonts/google/hind-v16-latin-600.woff") format("woff"),
        /* Modern Browsers */ url("/assets/fonts/google/hind-v16-latin-600.ttf")
            format("truetype"),
        /* Safari, Android, iOS */
            url("/assets/fonts/google/hind-v16-latin-600.svg#Hind")
            format("svg"); /* Legacy iOS */
}

* {
    /* Padding und Border einrechnen */
    box-sizing: border-box;
    margin: 0 auto;
}

html {
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape while allowing user zoom */
}

body {
    font-family: "Hind", sans-serif;
    background: #fff url(../media/bg_main.jpg) bottom center fixed no-repeat;
    background-size: cover;
    overflow-y: scroll;
}

.logo-container {
    width: 100%;
    /* min-height:150px; */
    max-width: 1024px;
    margin: 0 auto;
    padding: 2vw;
    /* background: red; */
    display: flex; /* Kinder Elemente haben dann die selbe H�he */
    flex-wrap: wrap; /* bei kleinen Bildschirmen Umbruch erzwingen */
    justify-content: space-between;
}
.logo {
    /* background: red; */
    margin: 0;
    /* padding: 0 0 0 2vw; */
    text-align: center;
    flex: auto; /* Breite nach Inhalt automatisch anpassen, bei gleicher Gr��e flex: 1 verwenden */
    align-self: flex-start; /* Oben ausrichten */
}
.resp-nav {
    /* background: blue; */
    margin: 0;
    padding: 0 2vw 0 2.5vw;
    text-align: right;
    flex: auto; /* Breite nach Inhalt automatisch anpassen, bei gleicher Gr��e flex: 1 verwenden */
    align-self: flex-end; /* Unten ausrichten */
}
.hamburger {
    cursor: pointer;
    z-index: 1000;
}

.resp-nav2 {
    background: #4f3128;
    padding: 20px 0 20px 0;
    max-width: 1024px;
}
.resp-nav2 ul.rex-navi3 {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.menu-container,
.footer-container,
.content-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 10px 0;
    background: #4f3128;
}

.menu,
.footer {
    position: relative;
    flex-basis: calc(100%);
    margin: 0 auto;
    padding: 0;
    color: #fff;
    z-index: 1;
}
.footer {
    text-align: center;
    margin-top: 10px;
}
.footer a {
    color: #fff;
    text-decoration: none;
    padding: 0 5px;
}
.footer p {
    margin-bottom: 0;
    padding-bottom: 0;
}

.content-container {
    background: transparent;
}
.content {
    position: relative;
    flex-basis: calc(95%);
    padding: 0;
    color: #000;
    z-index: 1;
}

.content a {
    color: #000;
    transition: 0.4s;
}
.content a:hover {
    color: #6d120e;
    transition: 0.4s;
}

/* Forms */

button,
input,
select,
textarea,
:-ms-input-placeholder,
::-moz-placeholder,
:-moz-placeholder,
::-webkit-input-placeholder {
    font-family: "Hind", sans-serif;
}

.content input[type="text"] {
    margin-bottom: 20px;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #a2a2a2;
}
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #a2a2a2;
    border-radius: 5px;
    margin-bottom: 20px;
}
textarea,
input[type="text"] {
    font-family: "Hind", sans-serif;
}
.content input[type="text"]:focus,
textarea:focus {
    /* border-color: #4697e4; */
}
.content input[type="checkbox"] {
    transform: scale(1.5);
}
.content input.anzahl {
    width: auto;
    text-align: center;
}
.content input.hot {
    border: 1px solid #000;
    background: #f6ffa2;
}
.content button[type="submit"] {
    margin-bottom: 20px;
    /* width:100%; */
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #a2a2a2;
    background-color: #4f3128;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

#anfahrt {
    max-width: 100%;
    height: 400px;
    margin-top: 10px;
    margin-bottom: 15px;
    border: 0px solid #a2a2a2;
}

.square-container-1,
.square-container-2 {
    display: flex;
    flex-wrap: wrap;
    max-width: 1024px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
}

.square-container-1 {
    background: #d9e2c6;
    /* padding: 15px; */
    margin: 0 auto;
}

.square {
    position: relative;
    flex-basis: calc(28%);
    margin: 0 auto 15px auto;
    /* border: 1px solid; */
    box-sizing: border-box;
    background: url("../media/ny.jpg") center center no-repeat;
    background-size: cover;
    /* transition: all .5s ease; */
    z-index: 1;
}

.square::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.square .content-top {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 9%;
    /* transition: all .25s ease; */
    background: linear-gradient(180deg, transparent 77%, #87898c 23%);
    outline: 1px solid white;
    outline-offset: -2vh;
    z-index: 10;
    /* added for centered text */
    /* display: flex;               */
    /* justify-content: center;     */
    /* align-items: center;         */
}
.square .content-top a,
.square .content-main a {
    color: #fff;
    text-decoration: none;
}

.square .content-main {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 9%;
    /* transition: all .25s ease; */
    background: linear-gradient(180deg, transparent 77%, #798e0b 23%);
    outline: 1px solid white;
    outline-offset: -2vh;
    z-index: 10;
    /* added for centered text */
    /* display: flex;               */
    /* justify-content: center;     */
    /* align-items: center;         */
}

.square .ohne {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    color: #000;
    text-align: left;
    /* padding-bottom: 11%; */
    z-index: 10;
    background: #d9e2c6;
}

.square .content-top:hover,
.square .content-top:focus,
.square .content-main:hover,
.square .content-main:focus {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
    /* transform:scale(1.05); */
    cursor: pointer;
    /* flex-basis: calc(23%); */
}

.oeffnungszeiten {
    clear: both;
    float: left;
    margin: 0;
    padding: 0;
    border: 0;
    border-collapse: collapse;
}
span.ueberschrift {
    clear: both;
    float: left;
    font-weight: bold;
    padding-bottom: 0;
    /* background: red; */
}
.oeffnungszeiten td {
    text-align: left;
    padding: 0 10px 0 0;
    margin: 0;
    /* background: red; */
}
span.legend {
    clear: both;
    float: left;
    font-weight: bold;
    padding-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
}
h1 {
    font-weight: 300;
    font-size: 1.6em;
  	line-height: 1.35em;
    padding-bottom: 5px;
    text-transform: uppercase;
}
h2 {
    font-weight: 300;
    font-size: 1.4em;
  	line-height: 1.35em;
    padding-bottom: 5px;
}
p {
    font-size: 1.1em;
    
  	line-height: 1.35em;
    padding-bottom: 15px;
}
strong,
b {
    font-weight: 700;
}

.content ul,
.content ol {
    margin: 0 0 1em 0;
}

.content li {
    margin-left: -2vh;
    font-size: 1.1em;
    line-height: 1.35em;
}

img.float_l,
.grid.float_l {
    float: left;
    margin: 8px 1em 1em 0;
}
img.float_r,
.grid.float_r {
    float: right;
    margin: 8px 0 1em 1em;
}
img.bild_b {
    outline: 1px solid white;
    outline-offset: -2vh;
    max-width: 100%;
}
hr, .ck-content hr {
    clear: both;
    margin: 10px 0;
    border: none;
    height: 1px;
    /* Set the hr color */
    color: #222; /* old IE */
    background-color: #222; /* Modern Browsers */
}
.my-pre {
    /* wrap long urls */
    white-space: pre; /* CSS 2.0 */
    white-space: pre-wrap; /* CSS 2.1 */
    white-space: pre-line; /* CSS 3.0 */
    white-space: -pre-wrap; /* Opera 4-6 */
    white-space: -o-pre-wrap; /* Opera 7 */
    white-space: -moz-pre-wrap; /* Mozilla */
    white-space: -hp-pre-wrap; /* HP Printers */
    word-wrap: break-word; /* IE 5+ */
}

.gal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	gap:1rem;
    width: 100%;
    border: 1px solid #aaa;
    padding: 10px 5px 0 5px;
    margin-bottom: 20px;
    /* background: blue; */
}
.gal-item {
    flex: 1 250px;
}
.gal-item img {
    width: 100%;
    height: auto;
    padding: 0 5px 0 5px;
    /* background: red; */
}

.datei-dl {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    text-align: left;
}

.datei-dl > p {
    margin: 0 10px 15px 0;
    padding: 0;
    flex-shrink: 1;
    flex-grow: 0;
    text-align: left;
}

@media (min-width: 1px) and (max-width: 459px) {
    h3,
    .square .content-top,
    .square .content-main {
        font-size: 1em;
    }
    h1 {
        font-size: 1.3em;
    }
    h2 {
        font-size: 1.15em;
    }
    p,
    .content li {
        font-size: 0.9em;
        line-height: 1.25em;
    }
    img.float_l,
    .grid.float_l,
    img.float_r,
    .grid.float_r,
    img.bild_b {
        min-width: 100%;
    }
    .logo {
        display: block;
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .resp-nav2 {
        display: none;
    }
    .hamburger {
        display: block;
        text-align: center;
        margin-top: 15px;
        padding: 0;
    }
    .slider,
    .slider > div {
        height: 40vw;
    }
    .square {
        flex-basis: calc(100%);
    }
    .menu-container {
        display: none;
    }
    .ohne {
        padding: 15px;
    }
    .ohne p,
    .content-top p,
    .content-main p {
        font-size: 1em;
        line-height: 1.15em;
        margin-bottom: 7px;
        text-align: center;
    }
    span.ueberschrift,
    span.legend,
    .oeffnungszeiten td {
        font-size: 90%;
    }
    .footer p {
        font-size: 1em;
        line-height: 1.4em;
        margin-bottom: 10px;
    }
}
@media (min-width: 460px) and (max-width: 679px) {
    h3,
    .square .content-top,
    .square .content-main {
        font-size: 1em;
    }
    /* .logo { flex-basis: calc(75%); } */
    .logo {
        display: block;
        width: 100%;
        padding: 0;
        text-align: center;
    }
    /* .resp-nav { flex-basis: calc(15%); } */
    .resp-nav2 {
        display: none;
    }
    .hamburger {
        display: block;
        text-align: center;
        margin-top: 15px;
        padding: 0;
    }
    .slider,
    .slider > div {
        height: 35vw;
    }
    .square {
        flex-basis: calc(45%);
    }
    .menu-container {
        display: none;
    }
    .ohne {
        padding: 15px;
    }
    .ohne p,
    .content-top p,
    .content-main p {
        font-size: 1em;
        line-height: 1.15em;
        margin-bottom: 5px;
        text-align: center;
    }
    span.ueberschrift,
    span.legend,
    .oeffnungszeiten td {
        font-size: 1em;
    }
    .footer p {
        font-size: 1em;
        line-height: 1.4em;
        margin-bottom: 10px;
    }
}
@media (min-width: 680px) and (max-width: 1023px) {
    h3,
    .square .content-top,
    .square .content-main {
        font-size: 0.8em;
    }
    .slider,
    .slider > div {
        height: 30vw;
    }
    .ohne p,
    .content-top p,
    .content-main p {
        font-size: 100%;
        line-height: 1.1em;
        margin-bottom: 5px;
    }
    span.ueberschrift,
    span.legend,
    .oeffnungszeiten td {
        font-size: 1em;
    }
    .footer p {
        font-size: 1em;
        line-height: 1.4em;
        margin-bottom: 10px;
    }
    .hamburger,
    .resp-nav2 {
        display: none;
    }
    .logo {
        display: block;
        width: 100%;
        padding: 0;
        text-align: center;
    }
}
@media screen and (min-width: 1024px) {
    h3,
    .square .content-top,
    .square .content-main {
        font-size: 1.2em;
    }
    .ohne p,
    .content-top p,
    .content-main p {
        font-size: 1.45em;
        line-height: 1.3em;
        margin-bottom: 10px;
    }
    .footer p {
        font-size: 1em;
        line-height: 1.4em;
        margin-bottom: 10px;
    }
    .hamburger,
    .resp-nav2 {
        display: none;
    }
    .logo {
        display: block;
        width: 100%;
        padding: 0;
        text-align: center;
    }
}
