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

/* Exxtra reset */
a {
  text-decoration: none;
  color: inherit;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/*----------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.container {
  padding: 0 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.button {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  color: #fff;
  padding: 15px 20px;
  font-weight: bold;
}

.button:hover {
  color: #333;
  background: #fff;
}

.button:active {
  color: #333;
  background: #ddd;
}

.hero {
  background: url('/img/hero-bg.jpg') no-repeat;
  background-size: cover;
}

.hero-inner {
  background: rgba(0,0,0,0.6);
  height: 100vh;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

.hero h1 {
  text-align: center;
  width: 100%;
  padding-bottom: 5vh;
}

.hero h1 img {
  width: calc(min(50vw,50vh));
}

.section-title {
  font-size: 50px;
  margin-bottom: 3rem;
}

.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 5px 30px;
  z-index: 1;
}

.sticky-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}


@media only screen and (max-width: 400px) {
  .sticky-header-inner {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.sticky-header a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  padding: 5px 10px;
}

.sticky-header svg,
.phone-link svg {
  stroke: #fff;
  fill: #fff;
  width: 17px;
  margin-right: 5px;
}

.phone svg,
.phone-link svg {
  transform: rotate(10deg);
  width: 14px;
}

.sticky-header a:hover {
  color: #ccc;
}

.sticky-header a:active {
  color: #ddd;
}

.sticky-header a:hover svg {
  stroke: #ccc;
  fill: #ccc;
}

.sticky-header a:active svg {
  stroke: #ddd;
  fill: #ddd;
}

.about {
  padding-top: 60px;
}

.about .container {
  max-width: 730px;
  margin: 0 auto;
}

.about p {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
  color: gray;
  margin-bottom: 1em;
}

.menu {
  padding-top: 1px;
  padding-bottom: 70px;
  background: #f8f9fa;
}

.menu-section {
  margin-top: 70px;
}

.menu-section-title {
  font-size: 35px;
  line-height: 1.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.menu-section-description {
  color: #999;
  position: relative;
  text-align: center;
  max-width: 745px;
  margin: 0 auto 70px;
  line-height: 1.4;
}

.menu-section-description:after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-50%, 100%);
  background: #999;
}

.menu-section-item-list {
  max-width: 725px;
  margin: 0 auto;
  justify-content: space-between;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}


.menu-section-item {
  width: 100%;
  padding: 10px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 700px) {
  .menu-section-item {
    width: 47.5%;
  }
}

.menu-item {
  text-align: center;
}

.menu-item-title {
  font-size: 18px;
  line-height: 1.5em;
}

.menu-item-description {
  margin-top: 10px;
  margin-bottom: 25px;
  color: #999;
  line-height: 1.4;
}

.menu-item-price {
  font-weight: bold;
}

.page-footer {
  color: #fff;
  background: #222;
  font-size: 16px;
  padding: 70px 0;
}

.page-footer .info p {
  line-height: 1.4;
}

.page-footer .inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: space-between;
  -ms-align-items: stretch;
  align-items: stretch;
}

.social {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.social a,
.social span {
  display: block;
  margin-right: 10px;
}

.social a {
  width: 30px;
  height: 30px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  background: red;
}

.map {
  margin-bottom: 30px;
  min-height: 200px;
}

.map img {
  max-width: 540px;
  width: 100%;
}

.page-footer .right,
.page-footer .info {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 20px;
}

.page-footer .info {
  min-width: 380px;
}

.calendar .day {
  display: inline-block;
  width: 150px;
}

.credits {
  text-align: center;
}

@media only screen and (max-width: 830px) {
  .section-title {
    font-size: 38px;
  }

  .hero-inner {
    height: auto;
    padding-top: 80px;
    padding-bottom: 30px;
  }

  .page-footer .inner {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
  }

  .page-footer .info br {
    display: none;
  }

  .page-footer .info .calendar br {
    display: block;
  }

  .page-footer .info {
    height: 300px;
    margin-bottom: 30px;
    min-width: 0;
    -ms-align-items: center;
    align-items: center;
  }

  .page-footer .seperator {
    color: transparent;
    display: block;
  }
}

.about-image {
  margin-bottom: 30px;
  width: 100%;
}
