html{
  --scroll-behavior: smooth;
  scroll-behavior: smooth;
  scroll-snap-type: y proximity;
  font-family: "scroll-behavior: smooth", sans-serif; /* smooth scroll polyfill*/
}
body{
  background-color: #DADEDD;
  font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
button:hover{
  cursor: pointer;
}
button:focus {
  outline:0;
}
img {
  display: block;
  max-width: 100%;
  border: none;
}
section{
  scroll-snap-align: start;
  scroll-margin-top: 38px;
  min-height: 100vh;
}
/*region: nav - page start*/
nav {
  position: fixed;
  width: 100%;
  color: white;
  z-index: 100;
}

nav > a {
  font-size: 16vw;
  float: left;
  margin: 5px 0 0 20px;
}

nav > ul {
  float: right;
  margin-top: 20px;
  font-size: 5vw;
}

nav > ul > li {
  display: inline;
  margin-right: 2vw;
}

.nav-scrolled > a,
.nav-scrolled > ul {
  font-size: 2rem;
  margin-top: 5px;
}
.nav-animated > a,
.nav-animated > ul {
  transition: margin-top 0.3s, font-size 0.3s;
}
#page-topper{
  width: 100%;
  image-rendering: crisp-edges;
}
#page-start {
  position: sticky;
  -webkit-position: sticky;
  width: 100%;
  height: 40px;
  top: 0;
  background-color: rgb(51, 11, 11);
}
/*endregion: nav - page start*/
#About {
  height: auto;
  display: grid;
  grid-template-columns: 30% 70%;
  background-color: white;
}
#About > img {
  width: 100%;
  margin: 30px;
}
#About > p{
  padding:40px;
  font-size: 1.6rem;
  line-height: 2.5rem;
  
  text-indent: 4rem;
}

h2{
  text-align: center;
  font-size: 3rem;
  text-decoration: underline;
  background-color: rgb(51, 11, 11);
  color:white;
  padding-bottom: 10px;
}
#Menu>ul{
  padding:10px 0 0 10px;
  background-color: white;
}
.sticky{
  position: sticky;
}
#Menu>ul>li{
  display: inline-block;
  padding-right: 20px;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: underline;
  text-align: center;
}
.menu-toggle{
  font-size:2rem;
  font-weight:bold;
  background-color:rgb(165, 184, 179);
  
  border:none;
  padding:5px 100px;
  border-radius: 15px 15px 0px 0px;
  -moz-border-radius: 15px 15px 0px 0px;
  -webkit-border-radius: 15px 15px 0px 0px;
  /* border: 1px solid #000000; */
  border-bottom:none;
}
.menu-toggle:hover{
  -webkit-box-shadow: 0px -2px 8px 1px rgba(0,0,0,0.38);
-moz-box-shadow: 0px -2px 8px 1px rgba(0,0,0,0.38);
box-shadow: 0px -2px 8px 1px rgba(0,0,0,0.38);
background-color:#DADEDD;
}
.active-menu{
  background-color:#DADEDD;
 /* border:2px solid black; */
 border-bottom:none;
}

#menu-content{
  width:80vw;
  display:grid;
  grid-template-columns: 30% 70%;
  column-gap: 30px;
  margin:20px auto;
  /* background-color:white; */
}
#menu-list{
  display: inline-block;
  padding-right:40px;
}
#menu-list > ul{
  list-style: none;
  
}
#menu-list > ul > li{
  border-bottom:1px solid black;
  margin-bottom:10px;
  
}
#menu-list > ul>li:last-child{
  border:none;
}
.item-name{
  font-size:2.5rem;
  font-weight: bold;
}
.item-price{
  float:right;
  font-size:1.6rem;
}
.item-desc{
  padding:5px 20px;
}
.menu-picture{
  display: none;
  width:90%;
  margin:100px auto 0 auto;
}
.active{
  display:block;
}

#Contact{
  background-image: url("/imgs/1080p_the-creative-exchange-d1ngW7SNehM-unsplash.jpg");
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-info{
  text-align: center;
  font-size: 3rem;
  font-weight:bold;
  margin:auto;
  width:100%;
  background-color:rgba(247, 228, 223, 0.7);
}
.contact-info > p{
  width:80%;
  padding:20px 0;
  margin:auto;
  color:#392D22;
}
.contact-info > p:first-child{
  border-bottom:2px solid black;
}
.contact-info > p > span{
  color:black;
}
.for-mobile{
  display: none;
}

@media (max-width: 1000px) {
  #menu-content{
    display:block;
  }
  .menu-picture{
    display:none;
  }
  .for-mobile{
    display:block;
  }
  .for-desktop{
    display:none;
  }
  #About{
    grid-template-columns: 100%;
    grid-template-rows: auto 100%;
    gap: 0;
  }
  #About>img{
    padding:30px;
    margin:0;
  }
  .menu-toggle{
    font-size:2rem; 
    padding:5px 10px;
  }
 }

 @media (max-width: 580px) {

  #About>img{
    display:none;
  }
  nav{
    background-color:black;
  }
  nav >a{
    display:none;
  }
  nav > ul{
    float: none;
    width:100%;
    text-align: center;
  }

  .contact-info{
    font-size: 2rem;
  }
}