/* base styles */
:root {
    --lechay: #205860;
}

html {
    height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

a {
    color: white;
}

a:visited {
    color: #2d808d;
}

a:hover {
    color: #2d808d;
}

body {
    /*background-color: rgb(255, 255, 255);*/
    /*background-image: linear-gradient(rgb(34, 37, 49), rgb(0, 255, 255));*/
    font-family: sans-serif;
    overflow-x: hidden;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    overflow: scroll;
}

.herocontainer {
    background-image: url('/assets/image/lechay_indoor.jpg');
    background-size: cover;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bg-image {
    position: relative;
   /* margin-top: -20px;*/
    width: 100vw;
    height: 100%;
    background-image: url('/assets/image/lechay_bg3.png');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 0;
    padding-top: 2rem;
}

.maincontainer {
    position: relative;
    text-align: center;
    justify-content: center;
    flex: 1;
}

/* off-screen-menu */
.off-screen-menu {
    background-color: rgb(34, 37, 49);
    height: 100vh;
    width: 100%;
    max-width: 450px;
    position: fixed;
    top: 0;
    right: -450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 3rem;
    transition: .3s ease;
    z-index: 1;
}

.off-screen-menu.active {
    right: 0;
}

/* nav */
nav {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(34, 37, 49);
}

.navtitle {
    display: flex;
    align-items: stretch;
}

.navtitle a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.navtitle h1 {
    font-family: LeChay;
    font-size: 2rem;
    color: var(--lechay);
    margin-bottom: auto;
    /*width: 100%;*/
    /*position: relative;*/
    /*left: 50%;*/
    /*transform: translate(-50%, -50%);*/
}

/* ham menu */
.ham-menu {
    height: 50px;
    width: 40px;
    /*margin-left: auto;*/
    position: relative;
    z-index: 2;
}

.ham-menu span {
    height: 5px;
    width: 100%;
    background-color: #205860;
    border-radius: 25px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s ease;
}

.ham-menu span:nth-child(1) {
    top: 25%;
}

.ham-menu span:nth-child(3) {
    top: 75%;
}

.ham-menu.active span {
    background-color: white;
}

.ham-menu.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.ham-menu.active span:nth-child(2) {
    opacity: 0;
}

.ham-menu.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.headtitle {
    margin-bottom: 2rem;
}

.headtitle h1 {
    color: palegoldenrod;
    font-family: LeChay;
    margin-bottom: auto;
}

.img-wrapper {
    display: flex;
}

.openingtitle {
    text-align: center;
    color: #205860;
}

.locationtitle {
    text-align: center;
    color: palegoldenrod;
    font-family: LeChay;
}

.locationtitle h4 {
    color: palegoldenrod;
}

#logo {
    height: 50px;
    left: 50%;
}

#logo2 {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.logo3-wrapper {
    text-align: center;
}

#logo3 {
    width: 200px;
    height: auto;
}


#icon-wrapper {
    display: flex;
    padding-right: 1rem;
}

.icon {
    /*padding: 1rem;*/
}

.opening {
    margin-right: auto;
    margin-left: auto;
    font-size: 20px;
}

.border-text {
            font-size: 30px;
            text-align: center;
            border: palegoldenrod 2px solid;
            background-color: bisque;
            padding:10px;
}

#footer {
    width: 100%;
    height: 100%;
    padding: 1rem 0;
    background: #FFFFFF;
    opacity: 40%;
}

#footer2 {
    /*position: absolute;
    bottom: 0;*/
    width: 100%;
    /*height: 60px;*/
    padding: 1rem 0;
    background: #FFFFFF;
    }

#footer-nav a {
    text-decoration: none;
    color: var(--highlight-color);
}

#footer-nav a:hover {
    color: var(--blue);
}

#footer-nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style-type: none;
    margin: 1rem 0;
    align-content: flex-end;
}

#footer-nav ul li:first-child {
    border-right: 1px solid black;
}

#footer-nav ul li {
    padding: 0 0.5rem;
}

h4 {
    font-size: 2rem;
    color: var(--lechay);
    margin-bottom: 0rem;
}

/*h3 {
    font-size: 2rem;
    color: var(--lechay);
    margin-bottom: 0.5rem;
    width: 100%;
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
}*/

h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--lechay);
    margin-bottom: 2rem;
}

h1 {
    text-align: center;
    color: palegoldenrod;
    font-size: 2rem;
}

@media(min-width: 900px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 2rem;
    }

    h4 {
        font-size: 2rem;
    }
}


.tg {
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0px auto;
    color: #205860;
}

.tg td {
    border-color: #205860;
    border-style: solid;
    border-width: 1px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal;
}

.tg th {
    border-color: #205860;
    border-style: solid;
    border-width: 1px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    overflow: hidden;
    padding: 10px 5px;
    word-break: normal;
}

.tg .tg-fymr {
    border-color: inherit;
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    vertical-align: top
}

.tg .tg-0pky {
    border-color: inherit;
    text-align: left;
    font-size: 18px;
    vertical-align: top
}

@media screen and (max-width: 767px) {
    .tg {
        width: auto !important;
    }

    .tg col {
        width: auto !important;
    }

    .tg-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: auto 0px;
    }
}

.about-wrapper {
    align-items: center;
    margin: auto;
    width: 70%;

}

.about-text {
    font-size: 20px;
    background-color: rgb(231, 229, 229);
    border: 5px solid #205860;
    /*padding: 50px;*/
    /*margin: 20px;*/
}

.about-text h2 {
    margin: 1rem;
}

.about-text p {
    margin: 1rem;
    text-align: center;
}

.opening-wrapper {
    align-items: center;
    margin: auto;
    width: 70%;

}

.opening-text {
    font-size: 20px;
    /*padding: 50px;*/
    /*margin: 20px;*/
}

.reservierung-wrapper {
    align-items: center;
    margin: auto;
    width: 70%;

}

.reservierung-text {
    font-size: 20px;
    border: 5px solid #FFFFFF;

    /*padding: 50px;*/
    /*margin: 20px;*/
}

.reservierung-text p {
    margin: 1rem;
    text-align: center;
}

.gallery-images {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: auto;
}

@font-face {
    font-family: LeChay;
    src: url('assets/font/AL_Nevrada.otf');
}