/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**************  CUSTOM STYLES *********************/

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

body {
  font-family: 'PT Sans Narrow', sans-serif;
  font-size: 1.1rem;
}

img {
  max-width: 100%;
}

button {
  background: none;
  border: none;
  padding: 0;
}

a,
a:hover,
a:visited,
a:link {
  color: #000;
}

p {
  line-height: 1.4em;
}

.mt-0{ margin-top: 0; }
.mt-2{ margin-top: 2rem; }
.mb-0{ margin-bottom: 0; }

.list-unstyled{
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn {
  padding: .5rem;
  border: 1px solid #000;
  text-align: center;
  text-decoration: none;
}

a.btn-order-orange {
  border-color: #c28326;
  background-color: #c28326;
  color: #fff;
  display: block;
  text-transform: uppercase;
}
a.btn-order-orange:hover {
  color: #c28326;
  background-color: #fff;
}

.wrapper {
  max-width: 1200px;
  margin: 2rem auto;
}

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


/* headers */
.site-header {
  background: #fff;
  color: #000;

  display: grid;
  grid-template-columns: 80px 1fr;
  width: 100%;
  
  padding: .5rem 2rem;
}

.site-header-home {
  grid-template-columns: 150px 1fr;
  position: fixed;
  z-index: 100;
  background: none;
  color: #fff;
}

.logo {
  height: 100%;
  max-width: 200px;
}

/* navigation */
.main-nav {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  justify-content: flex-end;
}

.main-nav li {
  margin: 0 1.25rem;
}

.main-nav a,
.main-nav a:link,
.main-nav a:visited {
  letter-spacing: 1px;
  color: #000;
  text-decoration: none;
  
}

.page-home .main-nav a,
.page-home .main-nav a:link,
.page-home .main-nav a:visited {
  color: #fff;
  
}

/*******************************/

.menu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  padding-top: 1em;
  cursor: pointer;
}

.expanded .menu-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;

}

.expanded .menu-open-button {
  display: none;
}
.menu-close-button {
  display: none;
}
.expanded .menu-close-button {
  display: block;
}

@media(max-width: 1023px){
  .site-header {
    display: flex;
    justify-content: space-between;
  }
  
  .menu-toggle {
    display: block;
    z-index: 150;
  } 
  
  .main-nav {
    position: relative;
  }

  .main-nav ul {
    position: fixed;
    top: 0;
    right: -275px;
    bottom: 0;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    width: 275px;
    background-color: rgba(255, 255, 255, .8);
    padding: 100px 1rem 1rem;
    transition: right .5s;
    z-index: 100;
  }
  
  .main-nav.expanded ul {
    right: 0;
  }

  .page-home .main-nav a, 
  .page-home .main-nav a:link, 
  .page-home .main-nav a:visited {
    color: #000;
  }

  .main-nav li {
    margin: .5rem 1rem;
  }

}

@media(max-width: 600px){
  .logo {
    max-width: 100px;
  }

  .site-header {
    padding: 1rem;
  }
}

@media(max-width: 450px){

}


/* Banners */
.banner {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.banner .cover {
  position: absolute;
  top: 0; right: 0; left: 0; bottom: 0;
  background-color: rgba(0, 0, 0, .3);
}


.banner-home {
  position: fixed;
  width: 100vw;
  height: 100vh;
}

.banner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner .title-background{
  background-color: #c28326;
  transform: rotate(20deg);
  width: 420px;
  height: 560px;
  position: absolute;
  top: -108px;
  left: -70px;
  border: 20px solid #5c441f;
}


.banner .page-title {
  color: #fff;
  padding: 1rem 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  font-size: 3rem;
  font-weight: normal;
  text-transform: uppercase;
}

@media(max-width: 900px){ 
  .banner:not(.banner-home) {
    height: 250px;
  }
  .banner .title-background{
    left: -150px;
  }
  .banner .page-title {
    font-size: 2rem;
  }
}

@media(max-width: 600px){ 
  .banner:not(.banner-home) {
    height: 160px;
  }
  .banner .title-background{
    left: -300px;
  }
  .banner .page-title {
    font-size: 1.3rem;
  }
}


.site-footer {
  background-color: #e2e2e2;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  z-index: 200px;
}

.page-home .site-footer {
  position: fixed;
  bottom: 0;
  z-index: 200;
  width: 100%;
  background-color: #fff;
}

.footer-nav {
  display: flex;
  align-items: center;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav ul li {
  margin: 0 1rem;
}


.footer-nav a,
.footer-nav a:link,
.footer-nav a:visited {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}

@media(max-width: 1023px){
  .site-footer {
    flex-direction: column;
    align-items: center;
    padding: .5rem;
  }
  .footer-nav {
    margin-bottom: 1rem;
  }
  .footer-nav ul li {
    margin-bottom: 1rem;
  }
}

@media(max-width: 600px){
  .footer-nav {
    font-size: .8rem;
    margin-bottom: 0rem;
  }

  .footer-nav ul li {
    margin-bottom: .5rem;
  }

}

/* Components */
.social-links {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
}

.social-links li {
  margin: 0 .5rem;
}



.locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: .5rem auto;
  padding: 2rem;
}

.location {
  display: block;
  height: 150px;
  background-color: #c28326;
  position: relative;
  overflow: hidden;
  transition: transform .5s;
  transform: rotate(0deg);
  box-shadow: 0px 0px 5px #666;
}

.location img {
  width: 200px;
  height: 100%;
  object-fit: cover;
}

.location-divider {
  position:absolute;
  background-color: #c28326;
  border-left: 4px solid #5c441f;
  top:0;
  left: 140px;
  width: 170px;
  height: 240px;
  transform: rotate(20deg);
}

.location-title {
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 2rem;
  font-weight: normal;
  margin: 0;
  padding: .5rem;
  text-transform: uppercase;
  border-bottom: 2px solid #5c441f;
}

.location-title span {
  color: #000;
  font-size: 1.3rem;
}

.location-info {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: .5rem;
}

.location-info span {
  margin: .2rem 0;
}

a.location,
a.location:hover,
a.location:visited,
a.location:link {
  color: #fff;
}

.location:hover{
  transform: rotate(-2deg);
}

@media(max-width: 1200px){
  .location-divider {
    left: 94px;
  }
}

@media(max-width: 900px){
  .locations {
    grid-template-columns: 1fr;
  }
  .location-divider {
    left: 160px;
  }
}

@media(max-width: 600px){
  .location-divider {
    left: 120px;
    top: -40px;
    width: 200px;
    height: 260px;
  }

  .location-info {
    font-size: .9rem;
  }
}

@media(max-width: 450px){
  .location-divider {
    left: 40px;
  }
  .location-title {
    font-size: 1.4rem
  }
  .location-info {
    font-size: .8rem;
  }
}

@media(max-width: 370px){
  .location-divider,
  .locations img {
    display: none;
  }
}

.restaurant-info {
  background-color: #000;
  padding: 1rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
}

.restaurant-info a, 
.restaurant-info a:hover,
.restaurant-info a:visited {
  color: #fff;
  text-decoration: none;
}
.restaurant-info a:hover {
  text-decoration: underline;
}

.restaurant-details {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}


.restaurant-menu h2 {
  text-transform: uppercase;
  font-size: 2rem;
}
.restaurant-menu h2 span{
  color: #c28326;
}

.restaurant-menu h4 {
  text-transform: uppercase;
}

.restaurant-menu ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.restaurant-team-member {
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
}

.restaurant-team-member h3{
  margin-top: 1rem;
  margin-bottom: .3rem;
}

.restaurant-team-member p{
  font-style: italic;
  margin-top: 0;
}

.team-member-images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.restaurant-notification {
  background-color: #c28326;
  padding: .5rem;
  max-width: 1200px;
  margin: 1rem auto;
  text-align: center;
}

.restaurant-notification,
.restaurant-notification a,
.restaurant-notification a:hover,
.restaurant-notification a:visited {
  color: #fff;
}


@media(max-width: 800px){
  .restaurant-info {
    flex-direction: column;
    align-items: center;
    font-size: .9rem;
    padding: .5rem;
  }
  .restaurant-info .restaurant-location {
    margin-bottom: 1rem;
  }

  .restaurant-details {
    grid-template-columns: 1fr;
  }

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

  .restaurant-about {
    grid-template-columns: 1fr;
    border-top: 4px solid #c28326;
  }
}


/**** PRIVATE DINING / CATERING ***/
.catering {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1rem;
}

@media(max-width: 1000px){
  .catering{
    grid-template-columns: 1fr;
  }
}


/***** ORDER ONLINE & FAQ *****/
.order-online {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 2rem;
  padding: 1rem;
}

.order-online-options {
  text-align: center;
}

.order-online-apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 400px;
}

@media(max-width: 1023px){
  .order-online{
    grid-template-columns: 1fr;
  }
}
