/* @import url("https://fonts.googleapis.com/css?family=Cookie&display=swap");
@import url("https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap"); */
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700&display=swap');
@font-face {
  font-family: 'MyWebFont';
  /* src: url('webfont.eot'); IE9 Compat Modes */
  src: url('../fonts/Southima.ttf') format('truetype');
}

@font-face {
  font-family: 'body font';
  /* src: url('webfont.eot'); IE9 Compat Modes */
  src: url('../fonts/Actor-Regular.ttf') format('truetype');
}

:root {
  --primary: #ccbc8d;
  --secondary: #29a3ba;
  --background: white;
  --backgroundDarker: #fdfdfd;
  --text: black;
  --whiteText: #fff;

  --primaryFont: 'MyWebFont', cursive;
  --bodyLight: rgb(164, 164, 164);
  --bodyFont: 'body font', sans-serif;
  --bodyAlt: 'Montserrat', sans-serif;
}

/* --background: #221e20; */

.is-marginless {
  margin: 0;
}

.bottom-navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--background);
  color: white;
  padding: 0.75rem;
  z-index: 9;
  border-top: 1px solid var(--primary);
}

.reserve-nav-cta {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
}
body {
  font-family: 'body font', serif;
  background: var(--background);
  padding-bottom: 55px;
  color: var(--text);
}

section {
  overflow: hidden;
}

.is-main {
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('../images/home-desktop.jpg?v3');
  background-position: center;
  background-size: cover;
}

.icon {
  max-width: 30px;
}

.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.is-flex-down {
  flex-direction: column;
}
.is-primary {
  color: var(--primary);
}
.is-primary-font {
  font-family: var(--primaryFont);
}

/* NAVIGATION */
.nav-cols .column:not(:last-child) {
  border-right: 1px solid var(--primary);
  /* height: 100%; */
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--background);
  padding: 2rem;
  border-bottom: 2px solid var(--primary);
  height: calc(100% - 55px);
  z-index: 5;
}

.mobile-menu li {
  margin-bottom: 1.5rem;
}

/* END NAVIGATION */

/* HERO */

.section-hero {
  /* justify-content: space-between; */
  min-height: 650px;
}

.hero-tagline {
  font-size: 2rem;
  color: #fff;
  margin-top: 1rem;
}

/* END HERO */

/* START SHOUT */

#shout-container shouttitle {
  font-family: var(--bodyFont);
  font-size: 1.85rem;
  border: none;
  font-weight: 100;
  font-family: var(--primaryFont);
  color: var(--primary);
}
#shout-container shoutmessage {
  /* font-family: var(--primaryFont); */
  color: var(--text);
  font-weight: bold;
  font-size: 1rem;
  line-height: 3rem;
  margin-bottom: 5px;
}
#shout-container shoutdate {
  order: 9;
  font-weight: 100;
  font-size: 0.75rem;
  color: var(--text);
}

.shout-image-block {
  border: 3px solid var(--primary);
}
.shout-container shouttext {
  z-index: 1;
}
/* END SHOUT */

.home-text {
  line-height: 3rem;
}

.home-icon {
  max-width: 75px;
  width: 100%;
  margin: 25px 0;
}

.home-section {
  padding: 2rem 0;
}

.button.is-primary {
  background: var(--primary);
  color: var(--background);
  text-transform: uppercase;
  font-weight: 100;
  border: 1px solid var(--primary);
  letter-spacing: 2px;
  padding: 1.25rem 5rem;
}

.is-primary.is-small {
  padding: 1.25rem 3rem;
}

.button.is-primary:hover {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 0 12px #00000052;
}

.tile.is-ancestor {
  width: 100%;
  margin: 0;
}

.is-relative {
  position: relative;
}

.with-accent {
  display: flex;
  align-items: center;
}

.with-accent span {
  content: '';
  height: 5px;
  border-bottom: 1px solid var(--primary);
  top: 0;
  flex: 1;
  margin-left: 1.5rem;
  order: 9;
}

.title {
  font-weight: 100;
  letter-spacing: 3px;
  font-size: 2.5rem;
  /* text-transform: uppercase; */
}

footer.section {
  background: var(--backgroundDarker);
}

.contact-line {
  margin: 1rem 0;
}

footer img {
  margin-right: 0.25rem;
}

footer .call-btn,
footer .gn-dir-btn {
  color: var(--text);
}

.gn-link {
  max-width: 200px;
  margin: 20px auto;
}

.footer-bottom {
  background: black;
  padding: 0.75rem 1rem;
}

.container-small {
  max-width: 1200px;
}

.container-small .columns .column {
  padding: 1.25rem;
}

.border-primary {
  border-bottom: 2px solid var(--primary);
}

.mobile-menu a {
  text-transform: uppercase;
  letter-spacing: 3px;
}

.is-about {
  background: url('../images/about-head.jpg');
  background-position: center;
  background-size: cover;
}
.is-events {
  background: url('../images/events-head.jpg');
  background-position: center;
  background-size: cover;
}
.is-gallery {
  background: url('../images/gallery-head.jpg');
  background-position: center;
  background-size: cover;
}
.is-contact {
  background: url('../images/contact-head.jpg');
  background-position: center;
  background-size: cover;
}

.heading-wrapper {
  padding: 1.5rem;
}

#aboutus-container {
  line-height: 2rem;
}

#menuSectionOfSections {
  display: flex;
  flex-wrap: wrap;
}

.pricelistLastUpdated,
.menu-main-cells {
  width: 100%;
}

.pricelistLastUpdated {
  color: var(--text);
}

.menuSectionName {
  padding: 20px 0;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 2px;
}

.sub-item-box h1 {
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0;
}
.menu-item-description {
  text-align: center;
}
.sub-item-box .allInOnce-h1-0 {
  font-size: 2.75rem;
  font-family: var(--primaryFont);
}
/* .sub-item-box .allInOnce-h1-1 {
  font-size: 2rem;
  font-family: var(--primaryFont);
} */
.menu-item-description .gn-price-inline-title {
  color: var(--text);
  font-weight: bold;
  text-transform: none;
  text-align: center;
}

.back_btn_menu {
  background: none;
  color: var(--text);
  margin: 0;
  border: none;
  position: fixed;
  top: 0.75rem;
}

.back_btn_menu:hover {
  background: none;
}
.allInOnce-h1-0 {
  font-size: 3rem;
}

.allInOnce-h1-1 {
  font-size: 2.5rem;
}

.no-event-post-text {
  display: none;
}

.dark-events .recurring-title,
.special-events-title,
.recurring-title {
  color: inherit;
}

.slick-initialized .recurring-event {
  background: transparent;
  border: none;
}

.recurring-event-description {
  box-shadow: none;
  border: none;
  padding: 0;
}

.recurring-arrow-left i,
.recurring-arrow-right i {
  color: var(--primary);
}

.recurring-event-name {
  color: var(--primary);
}

.recurring-btn {
  color: var(--primary);
}

.recurring-btn:hover {
  background: transparent;
  color: var(--primary);
}

.is-large {
  height: 500px;
}

.gn-album-container,
.popup-gallery {
  max-width: none;
}

.section-gallery {
  padding: 2rem 0;
}

.hours-numbers {
  color: var(--text);
}

@media (max-width: 768px) {
  .is-paddingless-mobile {
    padding: 0;
  }
}

.recurring-arrow-left,
.recurring-arrow-right {
  top: 0%;
}

.section-contact {
  padding: 2rem 0;
}

.hours-container {
  padding: 2rem 0;
  text-align: center;
}

.contact-details span {
  font-weight: bold;
}

.contact-details p {
  margin-bottom: 1rem;
}

.contact-details a {
  color: var(--primary);
}

.menu-cont {
  display: flex;
  align-items: center;
  justify-content: center;
}

.secure-form .secure-form-item input,
.secure-form .secure-form-item textarea {
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
}

.secure-form .secure-form-submit-button[type='submit'] {
  background: var(--primary);
  color: var(--background);
}

.contact-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.day-toggle {
  color: var(--text);
  font-weight: bold;
}

.mobile-logo {
  max-width: 275px;
}

.special-events-title {
  display: none;
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
  border-color: var(--primary);
}

.heading-wrapper .logo {
  margin-bottom: 2rem;
  max-width: 200px;
}

.logo {
  max-width: 300px;
}

.is-centered {
  justify-content: center;
  align-items: center;
}

body > section:nth-child(8) {
  padding-top: 0;
}
body > section:nth-child(7) {
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
  .order-first-desktop {
    order: -1;
  }
  .desktop-logo {
    max-width: 400px;
    margin-bottom: 1rem;
  }
  .section-hero {
    min-height: 100vh;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 4rem 8rem;
    position: relative;
  }
  .desktop-navigation {
    display: flex;
    margin-top: 1rem;
  }
  .desktop-navigation a {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 10px;
    display: inline-block;
  }
  .desktop-navigation a:hover {
    color: var(--primary);
    transition: all 0.3s;
  }
  .is-main {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
      url('../images/home-desktop.jpg?v3');
    background-position: center;
    background-size: cover;
  }
  .hero-details {
    justify-content: space-between;
    padding: 1rem;
    color: var(--primary) !important;
  }
  .hero-details .gn-dir-btn {
    color: var(--primary);
  }
  .side-by-section .section {
    padding: 4rem 8rem;
  }
  .side-by-section p {
    line-height: 4rem;
    font-weight: 100;
    letter-spacing: 2px;
    font-size: 2rem;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 2rem;
  }
  .darker-bg {
    background: var(--backgroundDarker);
  }
  .home-section__reserve {
    padding: 5rem 0;
  }
  .shout-container {
    width: auto;
    position: absolute;
    bottom: 10px;
    right: 0;
  }
  .shout-container shoutinner {
    background: white;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .shout-container shouttext {
    flex: 1;
    align-items: flex-start;
    padding: 10px 20px;
  }
  .shout-container shoutimg.shout-image-block {
    order: -1;
    width: 33%;
    border-radius: 0;
    border: none;
  }
  #shout-container shouttitle {
    margin: 0;
    font-family: var(--primaryFont);
    font-size: 1.5rem;
    text-transform: capitalize;
    color: var(--primary);
  }
  #shout-container shoutmessage {
    font-family: var(--bodyFont);
    font-size: 1.25rem;
    line-height: 2rem;
    text-align: left;
    color: var(--text);
    font-weight: normal;
  }
  #shout-container shoutdate {
    color: var(--text);
  }
  .desktop-nav {
    padding: 1rem 0;
    padding-bottom: 2rem;
  }
  .desktop-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .desktop-nav ul li {
    margin: 0 10px;
  }
  .desktop-nav a {
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .desktop-nav a:hover {
    color: var(--primary);
  }
  .is-large {
    height: 500px;
  }
  #menuSectionOfSections {
    justify-content: space-around;
  }
  #menuSectionOfSections > div {
    width: 35%;
    margin: 20px 0;
  }
  .center-gn-menu .menu-item {
    max-width: none;
  }
  .sub-item-box {
    max-width: 600px;
    margin: auto;
  }
  .map-container iframe {
    height: 300px;
  }
  .business-address {
    margin-right: 20px;
  }
  .home-details a,
  .home-details p,
  .home-details span {
    color: #fff;
    font-family: var(--bodyAlt);
    font-size: 1rem;
  }
  .home-details {
    margin-top: 20px;
  }
  body
    > section.hero.is-main.is-fullheight
    > div.section.is-flex.is-flex-down.align-center.section-hero
    > nav
    > ul
    > li:nth-child(1)
    > a {
    margin-left: 0;
  }
  .section-signature {
    padding-top: 4rem;
  }
  .section-signature img {
    max-width: 250px;
    width: 100%;
    margin: auto;
  }
  .is-large .is-size-1-desktop {
    font-size: 3.5rem !important;
  }
  .heading-wrapper .logo {
    max-width: 200px;
  }
}

.center-all {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .section-hero {
    padding-top: 10rem;
  }
  #shout-container shoutmessage {
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

.primary-outline {
  border: 1px solid;
  padding: 0.75rem 1rem;
}

.home-section .recurring-title {
  display: none;
}

.home-section .recurring-days-title,
.home-section .recurring-event-description,
.home-section .recurring-card-bottom {
  display: none;
}

.home-section .recurring-event {
  align-items: center;
}

.recurring-event-content .recurring-event-name {
  border: none;
}

.home-section .recurring-arrow-left,
.recurring-arrow-right {
  top: -6%;
}

@media (max-width: 768px) {
  a.menuSectionName {
    width: 100% !important;
    margin: 0.75rem 0;
  }
}

.menu-item .menu-img {
  display: none;
}

.desktop-navigation li {
  display: flex;
  align-items: center;
}

.online-ordering-btn {
  margin-left: 1rem;
  padding: 0.5rem;
  border-color: var(--primary);
  background-color: rgb(21 21 21 / 42%);
}

.menu-main-cells {
  background-color: var(--text);
}
