/* Roy Stafford */

/* 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;
}

/* End of Reset Code */

#skip
{
position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;
}
 
#skip:focus
{
position:static;
width:auto;
height:auto;
}

.sr-only {
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
  }
  
  .top-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #00BAF0;
    background: linear-gradient(to left, #f46b45, #eea849);
    color: #FFF;
    height: 150px;
    padding: 1.5em;
  }
  
  .menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  
  .menu > li {
    margin: 0 1rem;
    overflow: hidden;
  }
  
  .menu-button-container {
    display: none;
    height: 100%;
    width: 130px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  #menu-toggle {
    display: none;
  }
  
  .menu-button,
  .menu-button::before,
  .menu-button::after {
    margin-top: 40px;
    display: block;
    background-color: #fff;
    position: absolute;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
  }
  
  .menu-button::before {
    content: '';
    margin-top: -8px;
  }
  
  .menu-button::after {
    content: '';
    margin-top: 8px;
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
  }
  
  #menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
  }

  /* end of menu */
 .logo {
  margin-left: 25%;
 }


 header {
    padding-bottom: 1em;
    background-image: linear-gradient(#ECE0C8, #DAB99C);
 }

 #hours {
    padding-top: 2em;
    padding-bottom: 2em;
    text-align: center;
    font-size: 2em;
    background-color: #DAB99C;
 }

 #breakfast {
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 1.5em;
    text-align: center;
 }

 #breakfast img {
    width: 80%;
    padding-top: 1em;
 }

 #lunch {
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 1.5em;
    text-align: center;
    background-color: #DAB99C;
 }

 #lunch img {
    width: 80%;
    padding-top: 1em;
 }

 #dinner {
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 1.5em;
    text-align: center;
 }

 #dinner img {
    width: 80%;
    padding-top: 1em;
 }

 #carryout{
    padding-top: 1em;
    padding-bottom: 1em;
    font-size: 1.5em;
    text-align: center;
    line-height: 1.5em;
    background-color: #DAB99C;
 }

 footer {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    text-align: center;
 }

 #about img {
  padding-bottom: 5em;
 }

 #about h2 {
  padding-bottom: 3em;
 }

 #about p {
  padding-bottom: 5em;
  font-size: 1.5em;
  padding-left: 1em;
  padding-right: 1em;
 }

 @media (max-width: 700px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 50px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #333;
    height: 2.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }

  li a {
    color: #FFF;
  }
}

#menu img {
  width: 100%;
}

#about img {
  width: 100%;
}

#about h2 {
  text-align: center;
  font-size: 2em;
}

#contact img {
  width: 100%;
}

input {
  width: 100%;
  padding-bottom: 1em;
  margin-top: 1em;
  margin-bottom: 1em;
}

form {
  padding-top: 1.5em;
}

label {
  padding-bottom: 2em;
}

textarea {
  width: 100%;
}

@media (min-width: 720px) {

.logo {
  position: block;
  margin: 0;
  width: 50%;
  justify-content: right;
}

nav {
  position: absolute;
  top: 0;
  right: 0;
}

ul {
  list-style-type: none;
}

li a{
  color: #000;
}

#hours {
  padding: 0;
  margin-top: -51px;
}

#breakfast, #lunch, #dinner, #carryout {
  width: 50%;
  margin: 0 auto;
}

#breakfast, #dinner {
  background-color: #FFF;
}

#main-content {
  background-image: linear-gradient(#ECE0C8, #DEB853); 
}

#menu {
  width: 50%;
  margin: 0 auto;
}

#about {
  width: 50%;
  margin: 0 auto;
  background-color: #FFF;
}

#contact {
  width: 50%;
  margin: 0 auto;
  background-color: #FFF;
}

}