/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Navbar Stuff */

/* hide the mobile nav at desktop size */
.navbar {
    display: none;
  }
  
  
  /* existing nav bar code from https://codepen.io/alvarotrigo/pen/wvrzPWL */
  
  .navbar {
    width: 100%;
    box-shadow: 0 1px 4px rgb(146 161 176 / 15%);
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62px;
  }
  
  .navbar .menu-items {
    display: flex;
  }
  
  .navbar .nav-container li {
    list-style: none;
  }
  
  .navbar .nav-container a {
    text-decoration: none;
    color: #daff00;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.7rem;
  }
  
  .navbar .nav-container a:hover{
      font-weight: bolder;
  }
  
  

  .nav-container {
    display: block;
    position: relative;
    height: 60px;
  }
  
  .nav-container .checkbox {
    position: absolute;
    display: block;
    height: 32px;
    width: 32px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }
  
  .nav-container .hamburger-lines {
    display: block;
    height: 26px;
    width: 32px;
    position: absolute;
    top: 17px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .nav-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #0e2431;
  }
  
  .nav-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }
  
  .nav-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }
  
  .navbar .menu-items {
    padding-top: 120px;
    box-shadow: inset 0 2000px 2000px rgba(0, 0, 0, 0.5);
    height: 100vh;
    width: 100%;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding-left: 50px;
    transition: transform 0.5s ease-in-out;
    text-align: center;
  }
  
  .navbar .menu-items li {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #daff00;
  }
  
  .logo {
    float: right;
    width: 15%;
  }
  
  .logo img{
    width: 100%;
  }
  
  .nav-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
  
  .nav-container input[type="checkbox"]:checked ~ .logo{
    display: none;
  }
  
  
  /* YOU NEED TO COPY THIS PART INTO YOUR MEDIA QUERY - it hides the desktop nav and hides the mobile nav */
  
  /*
 @media screen and (max-width: 430px) {
    nav {
      display:none;
    }
    .navbar {
      display: block;
    }
  }

/*begin my css*/

html {
    font-family: "ocr-b-std", monospace;
    font-weight: 400;
    font-style: normal;
    background-color: #d1ccc7 ;
}

#sidebar{
    height: 100%;
    width: 225px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #d1ccc7;
    overflow-x: hidden;
    padding-top: 20px;
}

#logo img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    filter: drop-shadow(-4px 4px #000000);
}

#infobox{
    font-size: 72%;
    margin: 10%;
    text-align: center;
    border-top: 2px solid #daff00;
    border-bottom: 2px solid #daff00
}

#minimap{
    margin: 5%;
    filter: drop-shadow(-4px 4px #000000);
}

.iboxsection{
    padding: 5%;
}

nav{
    display: flex;
    flex-direction: column;
}

nav a{
    text-align: center;
    border: 2px solid #daff00;
    background-color: #e8e3de;
    padding: 5%;
    margin: 5%;
    font-size: large;
    filter: drop-shadow(-4px 4px #000000);
    color: black;
    text-decoration: none;
}

nav a:hover{
  background-color: #c9c3bd;
  filter: drop-shadow(-3px 3px #000000);
  transform: translateY(1px);

  transition: 0.2s;
}

.main{
    margin-left: 225px;
}

#header{
    background: url(images/HeaderImg.jpg) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
p{
    padding: 0.5%;
}
.headertext{
    text-align: right;
    padding: 3%;
    color: white;
    font-weight: ;
    /*mix-blend-mode: difference;*/
}

#MenuContent{
    display: flex;
    flex-direction: row;
    padding-top: 5%;
}

#MenuContent2{
    display: flex;
    flex-direction: row;
    padding-top: 5%;
}

#MenuContent2 .Subtext{
  text-align: left;
  padding-left: 5%;
}

.Subtext{
    width: 100%;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-right: 5%;
}

.Subtext h2{
    font-size: 2vw;
    text-transform: uppercase;
    color: #daff00;
}

.Subtext p{
    line-height: 200%;
    font-size: 1.2vw;
}

.buttonaligner{
    display: flex;
    justify-content: right;
}

.Subtext a{
    text-align: center;
    border: 2px solid #daff00;
    background-color: #e8e3de;
    padding: 2%;
    font-size: large;
    filter: drop-shadow(-4px 4px #000000);
    color: black;
    text-decoration: none;
    width: 30%;
}
    
.menupics{
    max-width: 100%;
    height: auto;
}

.menupics img{
    width: 100%;
}


/* Testing Stuff out */

#headermenu{
  background: url(images/Foodshots/FoodBG.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#headermenu img{
  width: 20%;
  margin: auto;
  mix-blend-mode: difference;
}

.MenuBox{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.MenuThird{
  width: 32%;
}

.MenuThird h2{
  font-size: x-large;
  color: #daff00;
  text-align: center;
  margin-top: 5%;
  margin-bottom: 5%;
}

.MenuThird p{
  font-size: small;
  margin-bottom: 5%;
  line-height: 170%;
}

.MenuThird img{
  width: 100%;
  margin-top: 5%;
}

#headerabout{
  background: url(images/AboutBG.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#headerabout img{
  width: 20%;
  margin: auto;
  mix-blend-mode: difference;
}

#AboutText{
  width: 40%;
  margin-top: 5%;
}

#AboutText h2{
  font-size: 2vw;
  text-align: right;
  margin-right: 5%;
  margin-top: 5%;
  color: #daff00;
}

#AboutText p{
  font-size: 1.2vw;
  text-align: right;
  margin-right: 5%;
  line-height: 120%;
}

#AboutContent{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

#AboutContent img{
  max-width: 100%;
  margin-top: 5%;
  margin-bottom: 5%;
}

#aboutimg{
  width: 40%;
}

#headercontact{
  background: url(images/ContactBG.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#headercontact img{
  width: 30%;
  margin: auto;
  mix-blend-mode: difference;
}

#contactcontent{
  text-align: center;
  font-size: xx-large;
  margin-right: 5%;
  margin-top: 5%;
  color: #daff00;
}

#contactcontent p{
  color: black;
  margin-top: 3%;
  font-size: medium;
  text-align: left;
}

#contactcontent a{
  color: black;
  margin-top: 3%;
  font-size: medium;
  text-align: left;
  text-decoration-color: #daff00;
}

#contactmap{
  width: 80%;
  margin: auto;
}

#contactmap iframe{
  height: 400px;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  border: 2px solid #daff00;
  background-color: #e8e3de;
  padding: 12px 20px;
  cursor: pointer;
  filter: drop-shadow(-4px 4px #000000);
}

input[type=submit]:hover {
  background-color: #b3d10a;
  transition: 0.2s;
}

.container {
  border-radius: 5px;
  padding: 20px;
  text-align: left;
  font-size: large;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 810px){
  #sidebar{
      height: auto;
      width: 100%;
      position: relative;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
  }
  .main{
      margin-left: auto;
  }

  #header{
      height: 50vh;
  }

  #headermenu{
      height: 50vh;
  }

  #headerabout{
    height: 50vh;
  }

  #headercontact{
    height: 50vh;
  }

  #infobox{
      margin: auto;
  }
  #logo{
      width: 20%;
      margin-left: 2%;
  }
  #logo img{
      width: 100%;
      margin: 0;
  }

  #minimap{
      margin: auto;
      width: 20%;
      margin-left: 0;
      margin-bottom: 2%;
      margin-right: 5%;
  }

  #infobox{
      margin-left: 2%;
      margin-right: 2%;
  }
  
  nav{
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 20%;
      margin-right: 3%;
  }
  
  nav a{
      font-size: medium;
      width: 100%;
  }

  .tabletalign{
      display: flex;
      flex-direction: row;
      justify-content: space-between;
  }

  #MenuContent{
      flex-direction: column-reverse;
      width: 32%;
      justify-content: flex-end;
  }

  #MenuContent2{
      flex-direction: column;
      width: 32%;
  }

  #MenuContent2 .Subtext{
    text-align: center;
    padding-left: 0;
  }

  .Subtext{
      text-align: center;
  }

  .ReservationsButton{
    margin-bottom: 15%;
  }

  .Subtext a{
      float: none;
  }

  .Subtext p{
      line-height: 150%;
      margin-bottom: 5%;
      font-size: medium;
  }
  
  .Subtext h2{
    font-size: larger;
  }

  .headertext p{
    margin: none;
  }

  .MenuBox{
    flex-direction: column;
  }

  .MenuThird{
    width: 60%;
    margin: auto;
  }

  #header img{
    width: 30%;
  }

  #headerabout img{
    width: 30%;
  }

  #headermenu img{
    width: 30%;
  }

  #headercontact img{
    width: 40%;
  }

  #contactcontent p{
    text-align: center;
  }

  #AboutText h2{
    font-size: 3vw;
    text-align: right;
    margin-right: 5%;
    margin-top: 5%;
  }
  
  #AboutText p{
    font-size: 1.4vw;
    text-align: right;
    margin-right: 5%;
    line-height: 120%;
  }
  
}


@media only screen and (max-width: 430px){
  #sidebar{
      display: none;
  }

  .tabletalign{
      flex-direction: column;        
  }

  #MenuContent2{
      flex-direction: column;
      width: 100%;
  }

  #MenuContent{
      flex-direction: column-reverse;
      width: 100%;
  }

  nav {
    display:none;
  }
  .navbar {
    display: block;
  }

  #header{
    height: 30vh;
  }

  #headermenu{
    height: 30vh;
  }

  #headerabout{
    height: 30vh;
  }

  #headercontact{
    height: 30vh;
  }

  #AboutContent{
    display: block;
    margin: auto;
  }

  #AboutText{
    width: 80%;
    margin: auto;
  }

  #AboutText p{
    font-size: 3.5vw;
    text-align: center;
  }

  #AboutText h2{
    font-size: 5vw;
    text-align: center;
  }

  #aboutimg{
    width: 80%;
    margin: auto;
  }


}

@media only screen and (min-width: 1800px){
  .Subtext h2{
    font-size: 1.5vw;
    text-transform: uppercase;
    color: #daff00;
}

  .Subtext p{
      line-height: 200%;
      font-size: 1vw;
  }

}