html{
    color: #303030;
    background-color: #eee;
    font-family: 'Inter', sans-serif;
    font-size: 1.2em;
    vertical-align: baseline;
    border: 0;
    margin: 0 auto;
    padding: 0 auto;
}

.red{
    color: #ff4242;
}

.blue{
    color: #4274ff;
}

.green{
    color: #2fb34d;
}

.orange{
    color: #ff9d42;
}

.text-left{
    text-align: left;
}

.text-center{
    text-align: center;
}

.text-right{
    text-align: right;
}

.content{
    
}

.ubuntu{
    font-family: 'Ubuntu';
}

.bold{
    font-weight: bold;
}

.center-text {
    text-align: center;
}

.flex{
    display: flex;
}

.block{
    display: block;
}

.column{
    flex-direction: column;
}

.float-left{
    float: left;
}

.float-right{
    float: right;
}

.row{
    flex-direction: row;
}

#map{
    width: 200px;
    height: 200px;
}



#container{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y:auto;
    text-align: center;
}

.text-justify{
    text-align: justify;
}


#page{
    display: inline-block;
    width: 1300px;
    height: fit-content;
    padding-bottom: 50px;
}


.xmas{
    margin: 0 auto;
    max-width: 650px;
    font-size: 21px;
}

#title-div{
    width: calc(100%);
    margin: 60px 0 60px;
    text-align: center;
}

#title-link{

}

#title-img{
    max-width: 400px;
}

#navbar{
    width: 100%;
    text-align: center;
}

#navcontentholder{
    width: fit-content;
    display: inline-flex;
    flex-direction: row;
    letter-spacing: 1px;
}

#navbar a{
    width: auto;
    padding: 10px 30px 10px 30px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    color: #21283d;
    transition: all ease-in-out 0.15s;
}


#navbutton input{
    z-index: -999;
    position: absolute;
    visibility: hidden;
    width: 0;
    height: 0;
}
  
#navbar a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #303030;
    transform-origin: bottom left;    
    transition: transform 0.15s ease-out;
}
  
#navbar a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
    transition: transform 0.25s ease-out;
}


.webcontent{
    width: 1000px;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    margin-top: 50px;
}


.headline{
    font-size: 1.5em;
    margin-bottom: 100px;
}

#head-img{
    width: 100%;
    height: 500px;
    background-image: url('/assets/img/head-main.png');
    background-position: center;
}

.info-text-1{
    text-align: left;
    width: 800px;
    display: inline-block;
    font-weight: bold;
}

#headline-main{
    font-family: "GFS Didot", serif;
    font-weight: 400;
    font-style: normal;
}


* p{
    line-height: 160%;
}

.opening{
    display: flex;
    width:  fit-content;
}

.opening-days{
    width: auto;
    margin-right: 30px;
    text-align: left;
}

.opening-times{
    width: auto;
    text-align: left;
}

.contact-block{
    text-align: left;
}


.img-collage {
    width: 100%;
    display: flex;
    text-align: center;
}

.img-collage > div{
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.img-collage > div img{
    max-height: 400px;
    height: 100%;
    width: auto;
    max-width: 400px;
    object-fit: cover;
    display: inline-flex;
    padding: 10px;
}


.menu{
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: left;
    width: 600px;
}

#menu-content p{
    width: 50%;
}


.menu-photo{
    margin: 0 0 20px 0;
}

.menu-photo img{
    width: 100%;

}


.menu-part{
    border-spacing: 0;
}

.menu > h2{
    color: #127bca;
}

.menu-row th{
    padding-top: 5px;
    padding-bottom: 5px;
}

.menu-row > td {
    line-height: normal; /* oder z. B. */
    height: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
  }

.menu-row:hover{
    background-color: #1111;
}


.menu-row-small-height{
    height: 30px;
}

.pad-top{
    padding-top: 20px;
}

.pad-bottom{
    padding-bottom: 20px;
}


.menu-index{
    width: 30px;
    padding-left: 10px;
    text-align: left;
}

.menu-name{
    width: fit-content;
    text-align: center;
}

.menu-small{
    font-size: small;
}

.menu-small-top{
    font-size: small;
    vertical-align: top;
}

.menu-name > p{
    line-height: normal;
    margin: 5px;
    text-align: left;
}

.menu-size{
    width: 20px;
}

.menu-price{
    width: 80px;
    text-align: right;
    padding-right: 10px;
}


.skeleton {
    background: #ddd;
    width: 200px;
    height: 400px;
    animation: pulse 1.5s infinite;
    border-radius: 4px;
  }
  
  @keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
  }


.footer{
    position: absolute;
    width: 100%;
    height: 50px; 
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    background-color: #333;
}




@media only screen and (max-width: 1300px) {

    #page{
        width: calc(100% - 50px);
    }

    

}

@media only screen and (max-width: 1170px) {
    #navbar a{
        padding: 10px 10px;
    }

}

@media only screen and (max-width: 1100px) {

}

@media only screen and (max-width: 1050px) {
    .webcontent{
        width: 100%;
    }
}





@media only screen and (max-width: 930px) {


    .headline{
        font-size: 1.2em;
    }

    .mobile-center{
        text-align: center;
        background-color: red;
    }

    .title-div{

    }

    .title-link img{
        width: 100%;

    }




    #navbutton{
        position: fixed;
        top: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background-color: #21283d;
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #navbutton span{ 
        display: flex;
        width: 30px;
        height: 3px;
        margin: 3px 0;
        position: relative;
        background: white;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 5px 0px;
        transition: all ease-in-out 0.2s;
    }

    #navbutton #navcheckbox:checked ~ span{
        display: flex;
        width: 30px;
        height: 3px;
        margin: 0;
        position: relative;
        background: white;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 5px 0px;
    }

    #navbutton #navcheckbox:checked ~ span:nth-last-child(3){
        background-color: white;
        transform: translateX(4px) translateY(-5px) rotate(45deg);
    }

    #navbutton #navcheckbox:checked ~ span:nth-last-child(1){
        background-color: white;
        transform: translateX(2px) translateY(6px) rotate(-45deg);
    }

    
    #navbutton #navcheckbox:checked ~ span:nth-last-child(2){
        visibility: hidden;
        width: 0;
        height: 0;
    }

    .nav-icon{
        display: inline;
    }


    #navbar{
        display: flex;
        position: fixed;
        height: 100%;
        z-index: 990;
        top: -100%;
        right: 0;
        transition: all ease-in-out 0.2s;
        justify-content: center;
        overflow-y: auto;
        padding: 0;
        background-color: #eee;
    }

    #navcontentholder{
        width: 100%;
        margin: auto;
        word-wrap: break-word;
        height: fit-content;
        flex-direction: column;
        background-color: transparent;
        padding: none;
        border-radius: 0;
    }

    #navbar a{
        width: 100%;
        padding: 23px 0;
        font-size: 1.2em;
        transition: none;
    }  

    #navbar a:hover{
        color: white;
        background-color: #aeaeae;
    }

    .webcontent{
        /* padding: 0; */
        word-wrap: break-word;
    }

}

@media only screen and (max-width: 830px) {
    .info-text-1{
        width: 100%;
    }
}


@media only screen and (max-width: 650px) {
    .menu{
        width: 100%;
    }
}

@media only screen and (max-width: 560px) {

    
    .img-collage > div{
        flex-direction: column;
    }

    .img-collage > div img{
        max-height: none;
        height: auto;
        width: 100%;
        padding: 10px 0;
    }
    
}


@media only screen and (max-width: 450px) {

    .headline{
        font-size: 1.2em;
    }


    #title-link img{
        width: 100%;
    }
    

}

/* @media only screen and (max-width: 416px) {   
    .info-text-1{
        font-size: smaller;
    }
} */


@media only screen and (max-width: 380px) {

    
    .webcontent{
        width: 100%;
    }
    
}


