/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
*, *:after, *:before, html, body {
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

html {
  color: #1b1b1b;
  font-size: 8px;
  line-height: 1;
  font-family: 'suisse-book';
  font-weight: normal;
  font-style: normal;
  background: #e2e1e0; }

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
#debugger {
  position: fixed;
  z-index: 999;
  background-color: white;
  left: 0;
  bottom: 0;
  padding: 1rem; }

h1, .h1 {
  font-size: 2rem;
  line-height: 1.2;
  font-style: normal;
  font-weight: normal;
  margin: 0;
  padding: 0; }

p, a {
  font-size: 2rem;
  line-height: 1.2; }

em {
  font-family: 'suisse-book-italic';
  font-weight: normal;
  font-style: normal; }

strong {
  font-family: 'suisse-bold';
  font-weight: normal;
  font-style: normal; }

a {
  text-decoration: none;
  color: blue;
  border-bottom: 0.25rem solid rgba(0, 0, 0, 0); }
  a:hover {
    border-bottom: 0.25rem solid blue; }

.draggable {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.24), 0 1px 3px rgba(0, 0, 0, 0.36);
  left: 0;
  top: 0;
  transition: box-shadow 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: default;
  z-index: 1;
  display: none;
  position: absolute; }
  .draggable:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    cursor: grab; }

.dragging:hover {
  cursor: grabbing;
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22); }
  .dragging:hover .shadow {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22); }

.wrapper {
  width: 100vw;
  height: 100vh;
  padding: 1.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto; }
  .wrapper .wrapper-inner {
    width: 100%;
    height: 100%;
    position: relative; }

/* LOADING SCREEN */
#loading-screen {
  width: 100vw;
  height: 100vh;
  background-color: #fffef7;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  padding: 3rem; }
  #loading-screen img {
    max-width: 20rem;
    animation: spin 5000ms infinite linear; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
/* BACKGROUND IMAGE */
#site-background-img {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; }
  #site-background-img .background-img {
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%; }

/*SITE MENU*/
#site-menu-button {
  border-radius: 100%;
  background-color: #fffef7;
  width: 9rem;
  height: 9rem;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.24), 0 1px 3px rgba(0, 0, 0, 0.36);
  display: flex;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 998; }
  #site-menu-button img {
    padding: 1rem;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: rotate(0deg);
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1); }
  #site-menu-button:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    cursor: pointer; }

#site-menu {
  display: none;
  border-radius: 100%;
  background-color: #fffef7;
  width: calc(100% - 6rem);
  height: auto;
  margin: 3rem;
  padding-bottom: calc(100% - 6rem);
  position: fixed; }
  #site-menu #site-menu-inner {
    position: absolute;
    border-radius: 100%;
    width: 100%;
    height: 100%;
    clip-path: circle(50%);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; }
  #site-menu ul {
    border-radius: 100%;
    position: relative;
    width: 100%;
    padding: 6rem 0;
    margin: auto 0; }
    #site-menu ul li {
      width: 100%;
      margin-bottom: 1.5rem;
      text-align: center;
      list-style: none; }
      #site-menu ul li:last-child {
        margin-bottom: 0; }
      #site-menu ul li a {
        color: #1b1b1b;
        border-bottom: 0.25rem solid rgba(0, 0, 0, 0); }
        #site-menu ul li a:hover {
          border-bottom: 0.25rem solid #1b1b1b; }
      #site-menu ul li .menu-external {
        color: blue; }
        #site-menu ul li .menu-external:hover {
          border-bottom: 0.25rem solid blue; }

/*RESTAURANT MENU*/
#res-menu {
  display: none;
  box-shadow: none !important;
  width: 100%;
  height: 100%;
  pointer-events: none; }
  #res-menu * {
    perspective: 1000px; }
  #res-menu .shadow {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.24), 0 1px 3px rgba(0, 0, 0, 0.36); }
  #res-menu:hover .shadow {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); }
  #res-menu .res-menu-page {
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.24), 0 1px 3px rgba(0, 0, 0, 0.36);
    pointer-events: all; }
    #res-menu .res-menu-page:last-child {
      margin-bottom: 6rem; }
    #res-menu .res-menu-page img {
      object-fit: contain;
      max-width: 100%;
      max-height: 100%;
      display: inline-block; }
  #res-menu .odd img {
    float: left; }
  #res-menu .even img {
    float: right; }

/*CONTACT BLOCK*/
#contact-block {
  background-color: #fffef7;
  border-radius: 2px;
  padding: 6rem 2rem;
  width: 52rem;
  max-width: 100%;
  text-align: center; }
  #contact-block h1 {
    text-align: center;
    margin-bottom: 4rem; }
  #contact-block p {
    text-align: center; }

/*SOMETHING BLOCK*/
.something-block {
  background-color: #fffef7;
  border-radius: 2px;
  padding: 2rem;
  max-width: 60rem;
  overflow-y: auto;
  max-height: 100%; }
  .something-block h1, .something-block .h1 {
    margin-bottom: 4rem; }
  .something-block p, .something-block .p {
    margin-bottom: 2rem; }
    .something-block p:last-child, .something-block .p:last-child {
      margin-bottom: 7.5rem; }
  .something-block img {
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 2rem;
    border: 2px solid #1b1b1b; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important; }

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */ }

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table; }

.clearfix::after {
  clear: both; }

@media only screen and (min-width: 480px) {
  #site-menu {
    width: 40rem;
    height: 40rem;
    padding-bottom: 0; } }
@media only screen and (min-width: 768px) {
  html {
    font-size: 10px; }

  .wrapper {
    padding: 3rem;
    overflow: hidden; }

  #site-menu {
    position: absolute; }

  #site-menu-button {
    right: 3rem;
    bottom: 3rem; }

  #res-menu {
    pointer-events: none; }
    #res-menu .res-menu-page {
      margin-bottom: 0;
      box-shadow: none; }
      #res-menu .res-menu-page:last-child {
        margin-bottom: 0; }

  .something-block {
    width: 60rem; } }
@media only screen and (min-width: 1024px) {
  html {
    font-size: 12px; } }
@media only screen and (min-width: 1920px) {
  html {
    font-size: 14px; } }
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }
/* ==========================================================================
    Print styles.
    Inlined to avoid the additional HTTP request:
    https://www.phpied.com/delay-loading-your-print-css/
    ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]::after {
    content: " (" attr(href) ")"; }

  abbr[title]::after {
    content: " (" attr(title) ")"; }

  /*
      * Don't show links that are fragment identifiers,
      * or use the `javascript:` pseudo protocol
      */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: ""; }

  pre {
    white-space: pre-wrap !important; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  /*
      * Printing Tables:
      * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
      */
  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }

/*# sourceMappingURL=main.css.map */
