@font-face {
    font-family: RoobertRegular;
    src: url("RoobertADA-Regular.woff"),
        url("RoobertADA-Regular.woff2");
}

@font-face {
    font-family: RoobertRegularItalic;
    src: url("RoobertAda-RegularItalic.woff"),
        url("RoobertAda-RegularItalic.woff2");
}

@font-face {
    font-family: RoobertBold;
    src: url("RoobertADA-Bold.woff"),
        url("RoobertADA-Bold.woff2");
}

@font-face {
    font-family: RoobertBoldItalic;
    src: url("RoobertAda-BoldItalic.woff"),
        url("RoobertAda-BoldItalic.woff2");
}




* {
    box-sizing: border-box;
    }

body{
    margin: 0;
    background-color: black;
    color: white;
    font-family: RoobertRegular, sans-serif;
    font-size: 16px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

#homeContainer{
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
    background-color: black;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid white;
}
#container{
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
    background-color: black;
    max-width: 600px;
    min-height: 100vh;
    border: 1px solid white;
    paddin-bottom: 20px;
}
p{
    margin: 0;
}

a{
    color: white;
    text-decoration: none;
}
::placeholder{
    color: white;
    opacity: 1;
}

#menu{
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    width: 100%;
}
#homeContainer #menu.start{
    bottom: -100%;
}
#menu>*{
    border-top: 2px solid white; 
    font-size: 30px;
    padding: 24px 16px;
}

#menuLink{
    padding: 3px 12px;
    border-radius: 20px;
    color: black;
    background-color: white;
    align-self: center;
    font-size: 20px;
}
#homeContainer #menuLink{
    position: absolute;
    top: 108px;
    left: 50%;
    transform: translateX(-50%);
}
#homeContainer #menuLink.start{
    top: 50%;
}


#imprintLinks{
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    padding: 10px;
}

#address{
    padding: 16px;
}
#homeContainer #address{
    position: absolute;
    top: 0;
    bottom: unset;
}
#homeContainer #address.start{
    top: unset;
    bottom: -80px;
}
#header{
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
}

#title{
    font-size: min(45vw, 250px);
    line-height: min(40vw, 220px);
    top: -100dvh;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
#title.start{
    top: 0;
}
#cafe{
    top: -100dvh;
    font-size: min(30vw, 130px);
    line-height: min(25vw,  110px);
    bottom: unset;
    position: absolute;
    padding: 16px;
}
#cafe.start{
    bottom: 0;
    top: unset;
}
.item{
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.itemTitle{
    font-family: RoobertBold;
}
.title{
    font-size: 30px;
    padding: 0 16px;
}
.bullet{
  height: 10px;
  width: 10px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
}
.itemImage img{
    max-width: 100%;
    min-width: 0;
}
.itemImageCaption{
    font-size: 12px;
}
.menuCategory{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
}
.menuCategoryTitle{
    font-family: RoobertBold;
    
}
.menuItem{
    display: flex;
    justify-content: space-between;
}

#reservationForm{
    /* width: min(100%, 400px); */
    width: 100%;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
#reservationForm > *:nth-child(3),
#reservationForm > *:nth-child(8),
#reservationForm > *:nth-child(9)
{
    margin-bottom: 40px;
}
input, textarea{
    width: 100%;
    color: white;
    background-color: black;
    border: 1px solid white;
    border-radius: 20px;
    padding: 5px 8px;
}
textarea{
    border-radius: 10px;
}
.text{
    padding: 0 16px;
}
#googleLink{
    text-decoration: underline;
}
