@import url('https://fonts.googleapis.com/css?family=Aclonica&display=swap');

/* 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;
  font-family: 'Aclonica','Montserrat', sans-serif;
}
/* 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;
}

h1 {
  font-size: 25px;
}

p {
  font-size: 16px;
}

a {
  text-decoration: none;
}


#content {
  width: 100vw;
  height: 100vh;
  text-align: center;

  background-image: url(../images/restaurant.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.dark-faded {
  width: inherit;
  background-color: #131212bf;
  color: #fff;
  height: 60px;
}

.dark-faded header {
  padding: 20px 0
}

.dark-faded header .selected {
  opacity: 1; 
}

.dark-faded header a {
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
  opacity: 0.5;
}

#content h1, #content p {
  padding: 20px 0;
}

#content header nav {
  display: flex;
  justify-content: center;
}

header ul {
  display: flex;
}

.nav-tab {
  margin: 0 50px;
}

.nav-tab a {
  text-decoration: none;
}

#main-content {
  color: #fff;
}

.best-restaurant {
  padding-top: 314px;
}

.best-restaurant h1{
  text-align: center;
  font-size: 45px;
  width: 415px;
  color: #000000;
  margin: 0 auto;
  text-shadow: 1px 3px 2px rgb(45, 45, 45);
}
/* dish styles */
.menu-container {
  background-color: #fff;
}

.menu-container h2 {
  color: #e6bc85;
  text-align: left;
  padding: 30px 0 30px 3%;
  font-size: 40px;
  width: 250px;
  text-shadow: 1px 3px 2px rgba(179, 155, 124, 0.4)
}

.menu-container h2::after{
  content: '';
  width: 80px;
  height: 80px;
  background-image: url(https://img.icons8.com/color/80/000000/sushi.png);
  display: block;
  float: right;
  margin-top: -30px;
}


.dish-list {
  display: flex;
  flex-wrap: wrap;
}

.dish {
  display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 27%;
    box-sizing: border-box;
    margin: 0 3% 25px;
}

.dish img {
  height: 250px;
  order: 0;
}
.dish-description {
  order: 1;
  border-bottom: 1px solid #e6bc85;
  padding: 10px 0;
}

.dish a {
  text-decoration: none;
  /* font-weight: 600; */
  font-size: 12px;
  color: #797979;
  letter-spacing: 1px;
  text-transform: uppercase;
  
}

/* contact */
.contact {
  background-color: #fff;
  color: #000;
  width: 80%;
  margin: 20px auto;
  display: flex;
  
}

.contact form {
  width: 60%;
  padding: 20px;
  box-sizing: border-box;
}

#main-content .contact .information-container {
  width: 40%;
  text-align: left;
  box-sizing: border-box;
  padding-left: 100px;
  background-color: #262729;
}

#main-content .contact .information-container p, #main-content .contact .information-container span {
  font-family: 'Monserrat';
}

.contact-details-label {
  font-weight: bold;
  font-size: 18px;
  color: #da4e48;
  text-transform: uppercase;
  margin: 20px 0;
  display: block;
}

.contact form label{
  color: #748194;
  display: block;
  margin: 12px 0;
  box-sizing: border-box;
}

#main-content .contact .information-container p {
  padding: 0;
  color: #c8c9c9;
  text-transform: uppercase;
  margin: 5px 0;
}

input, textarea {
  background-color: #F6F7F9;
  outline: none;
  border-radius: 5px;
  border: none;
  width: 100%;
  padding: 6px 15px;
  color: #748194;
  font-size: 14px;
  box-sizing: border-box;
}

#submit {
  border: none;
  padding: 6px 25px;
  background-color: #149886;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  margin-top: 20px;
}