@import url('https://fonts.googleapis.com/css?family=Sancreek&display=swap');

/* @import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700|Sancreek&display=swap"); */

@font-face {
  font-family: carnival;
  src: url('../carnival.ttf') format('truetype');
}

:root {
  --primary: #652007;
  --bodyFont: #4a4a4a;
  --specialFont: carnival;
  --bodyFont: 'Open Sans', sans-serif;
}

body {
  font-family: var(--bodyFont);
}

a:hover {
  color: rgb(223, 223, 223);
  transition: color 0.3s;
}

.special-font {
  font-family: carnival, cursive;
}

/* HEADER STYLES */

header {
  position: fixed;
  z-index: 99;
  background: rgba(0, 0, 0, 0.2);
  -webkit-flex-direction: row;
  flex-direction: row;
  transition: all 0.5s;
  width: 100%;
}

.logo-container {
  padding: 10px;
  -webkit-order: -1;
  order: -1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.logo-container img {
  max-width: 100px;
}

header.has-scrolled {
  background: rgba(0, 0, 0, 0.836);
  -webkit-flex-direction: row;
  flex-direction: row;
  transition: all 0.5s;
}

.has-scrolled .logo-container img {
  max-width: 100px;
}

.has-scrolled .logo-container {
  -webkit-order: -1;
  order: -1;
}

@media (min-width: 1088px) {
  .logo-container img {
    max-width: 200px;
  }
}

/* END HEADER STYLES */

/* BEGIN HAMBURGER STYLES */

.hamburger-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: black;
  border-radius: 50%;
  z-index: 10;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  background-color: #fff;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #fff;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before,
.hamburger-box {
  width: 30px;
}

/* END HAMBURGER STYLES */

/* BEGIN NAVIGATION STYLES */

nav {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.867);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media (min-width: 1088px) {
  nav {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}

nav a {
  display: inline-block;
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 5px 0;
  font-size: 1rem;
  font-weight: 700;
}

@media (min-width: 1088px) {
  header {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: row;
    flex-direction: row;
    width: 100%;
    -webkit-justify-content: center;
    justify-content: center;
  }
  nav {
    position: static;
    background: none;
    -webkit-flex-direction: row;
    flex-direction: row;
    height: auto;
    padding: 10px;
  }
  nav a {
    margin: 0 10px;
    /* font-family: var(--specialFont);
letter-spacing: 2px; */
    font-size: 17px;
  }
}

/* END NAVIGATION STYLES */

/* HERO STYLES */

.hero {
  --height: 90vh;
  --darkenBG: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  --textColor: #fff;
  --headingSize: 3rem;
  --headingWeight: bold;
  height: 90vh;
  color: var(--textColor);
  position: relative;
  /* width: 100%; */
}

.hero-cols {
  height: 100%;
}

.hero-part {
  height: 45%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.hero-part > * {
  margin-bottom: 10px;
}

.hero-part p {
  font-size: 0.8rem;
  font-style: italic;
}

.hero-part h2 {
  font-size: var(--headingSize);
  font-weight: var(--headingWeight);
  padding-top: 28px;
}

.part-left {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/home-left.jpg');
  background-position: center;
  background-size: cover;
}

.part-right {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/home-right.jpg');
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .hero-part {
    height: 100%;
    padding-top: 0;
  }
}

/* END HERO STYLES */

/* BEGIN TWO THIRDS ABOUT */

.about-showcase-section {
  background: #fcfcfc;
}

.two-thirds-about {
  --pMaxWidth: 1200px;
  --heading-size: 3rem;
  --font-weight: inherit;
  --pSize: 1rem;
  /* If Border */
  --borderColor: black;
  --borderWidth: 3px;
}

.two-thirds-about h2 {
  margin-bottom: 20px;
  font-size: var(--heading-size);
  font-weight: var(--font-weight);
  color: black;
  text-transform: uppercase;
}

.two-thirds-about p {
  max-width: var(--pMaxWidth);
  font-size: var(--pSize);
}

.text-col {
  border-top: var(--borderWidth) solid var(--borderColor);
  border-bottom: var(--borderWidth) solid var(--borderColor);
}

/* END TWO THIRDS ABOUT */

/* BEGIN SIMPLE PARALLAX */

.simple-parallax {
  --height: 400px;
  --fontSize: 3rem;
  --textTransform: uppercase;
  --textcolor: #fff;
  --fontWeight: bold;
  background-image: url('../images/parralax.jpg');
  height: var(--height);
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.simple-parallax h2 {
  font-size: var(--fontSize);
  text-transform: var(--textTransform);
  color: var(--textcolor);
  font-weight: var(--fontWeight);
}

@media (min-width: 768px) {
  .simple-parallax {
    background-attachment: fixed;
  }
}

/* END SIMPLE PARALLAX */

/* BEGIN SHOWCASE CARDS */

.showcase-card {
  --maxWidth: 300px;
  --fontWeight: bold;
  --borderWidth: 0;
  --borderColor: rgb(226, 226, 226);
  --borderRadius: 3px;
  --cardPadding: 5px;
  --cardBG: #fff;
  max-width: var(--maxWidth);
  border: var(--borderWidth) solid var(--borderColor);
  border-radius: var(--borderRadius);
  padding: var(--cardPadding);
  background-color: var(--cardBG);
  margin: auto;
}

.showcase-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;
  font-weight: var(--fontWeight);
  font-family: var(--specialFont);
  color: black;
  text-transform: uppercase;
}

.showcase-card img {
  width: 100%;
  max-height: 220px;
}

.showcase-card p {
  font-weight: 500;
}

/* end showcase cards */

/* BEGIN FOOTER STYLES */

footer {
  --bg: black;
  --textColor: #fff;
  background-color: black;
  color: #fff;
}

footer i {
  color: var(--textColor);
  padding-right: 10px;
}

footer a {
  color: var(--textColor);
  font-weight: bold;
  text-transform: uppercase;
  margin: 5px 0;
  font-size: 0.8rem;
}

footer h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
}

/* END FOOTER STYLES */

/* BEGIN PAGE HEADER STYLES */

.page-header {
  --height: 45vh;
  --padding: 20px;
  --darkenBG: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  --horizTextAlignment: flex-start;
  --verticalTextAlignment: flex-end;
  height: var(--height);
  width: 100%;
  padding: var(--padding);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: var(--horizTextAlignment);
  justify-content: var(--horizTextAlignment);
  -webkit-align-items: var(--verticalTextAlignment);
  align-items: var(--verticalTextAlignment);
}

.catering-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/catering.jpg');
  background-position: center;
  background-size: cover;
}

.events-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/events.jpg');
  background-position: center;
  background-size: cover;
}

.mobile-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/home-left.jpg');
  background-position: top;
  background-size: cover;
}

.menu-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/menu.jpg');
  background-position: center;
  background-size: cover;
}

.news-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/news.jpg');
  background-position: center;
  background-size: cover;
}

.contact-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../images/contact.jpg');
  background-position: center;
  background-size: cover;
}

.page-header h2,
.page-header p {
  --textColor: #fff;
  color: #fff;
}

.page-header h2 {
  --textSize: 3rem;
  --textTransform: uppercase;
  font-family: var(--specialFont);
  font-size: var(--textSize);
  text-transform: var(--textTransform);
}

/* END PAGE HEADER STYLES */

/* Catering page styles */

.catering-block {
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 1px 0 12px rgba(0, 0, 0, 0.26);
}

.catering-block h2 {
  font-size: 5rem;
  color: #652007;
  text-align: center;
}

.catering-block p {
  font-size: 1rem;
  color: black;
  text-transform: uppercase;
}

.catering-block p.large {
  font-size: 1.4rem;
}

.catering-text-container {
  background: #fbf1d8;
  border: 1px solid #652007;
  padding: 10px;
}

.catering-img {
  margin: 10px 0;
}

.catering-text-container p {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .catering-block h2 {
    font-size: 2rem;
  }
  .catering-block p.large {
    font-size: 1rem;
  }
  .catering-block {
    padding: 5px;
  }
}

body > section > div > div:nth-child(2) > p {
  text-align: center;
}

/* end catering page styles */

/* BEGIN MENU STYLES */

#menu-container {
  max-width: 1000px;
  margin: auto;
  box-shadow: 1px 0 12px rgba(0, 0, 0, 0.26);
}

.sub-item-box h1 {
  color: var(--primary);
  font-family: var(--specialFont);
  font-size: 2.5rem;
  text-transform: uppercase;
}

.sub-item-box .allInOnce-h1-0 {
  font-size: 4rem;
}

@media (max-width: 768px) {
  .sub-item-box .allInOnce-h1-0 {
    font-size: 2rem;
  }
}

.menu-item {
  display: -webkit-inline-flex;
  display: inline-flex;
  /* flex-wrap: wrap; */
  float: none;
  color: black;
}

.menu-item-description {
  /* width: 100%; */
}

.menu-item-prices {
  /* width: 100%; */
  /* display: inline-flex; */
}

.menu-item-description p {
  /* margin-bottom: 10px; */
}

.menu-category-desc {
  /* max-width: 900px; */
  margin: auto;
}

.menu-item-description h3 {
  font-weight: 700;
  text-transform: uppercase;
}

.menu-item-description p {
  font-weight: 500;
  color: black;
}

/* END MENU STYLES */

/* CONTACT FORM STYLES */

.secure-form {
  margin: auto;
}

a {
  color: var(--bodyFont);
}

.hours-title {
  font-family: var(--specialFont);
  font-size: 3rem;
  color: var(--bodyFont);
  text-align: center;
}

.contact-block {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.hours-section {
  margin-bottom: 50px;
}

.hours-multiple .hours_container_box h3 {
  font-weight: 600;
}

.secure-form .secure-form-submit-button[type='submit'] {
  max-width: 150px;
  text-align: center;
  margin: auto;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid black;
  color: var(--bodyFont);
  box-shadow: none;
}

.day-toggle,
.secure-form .secure-form-item label {
  font-weight: 600;
  text-transform: uppercase;
}

/* END CONTACT FORM STYLES */

/* BEGIN EVENT STYLING */

.slick-initialized .recurring-event {
  border: none;
}

.single-recurring-event .recurring-event-name {
  border: none;
  font-family: var(--specialFont);
  font-size: 1.5rem;
  margin-bottom: 0;
  color: black;
}

.single-recurring-event .recurring-days-title {
  font-size: 2rem;
  font-weight: bold;
  color: black;
}

.recurring-event-description {
  box-shadow: none;
  border: none;
  padding: 3px;
  display: inline;
  font-size: 1rem;
}

.events_main {
  box-shadow: none;
}

.event-info .date {
  font-size: 2rem;
  font-weight: bold;
  color: black;
  border: none;
}

.event-info h3.event-card-title {
  border: none;
  font-family: var(--specialFont);
  font-size: 1.5rem;
  margin-bottom: 0;
  color: black;
}

.events-details-wrapper {
  box-shadow: none;
  padding: 10px;
  border: none;
  color: #4a4a4a;
}

.recurring-event-name {
  font-size: 2rem;
  font-family: var(--specialFont);
  border: none;
}

.recurring-title {
  display: none;
}

/* END EVENT STYLING */

/* BEGIN SHOUT STYLES */

.shout-section {
  /* padding-top: 15rem; */
}

@media (min-width: 768px) {
  .shout-section {
    padding-top: 15rem;
  }
}

.shout-container shouttitle {
  margin: 0;
  font-family: carnival;
  text-transform: uppercase;
  font-size: 2rem;
}

.shout-container shoutdate {
  color: #33333338;
}

.shout-container shoutmessage {
  font-size: 1rem;
  color: var(--bodyFont);
}

.shout-container shoutimg,
.shout-container shoutimg.shout-image-block {
  border-radius: 0;
  margin: 0;
  width: 100%;
  height: auto;
  max-width: none;
  max-height: 200px;
}

@media (min-width: 1088px) {
  .shout-container shoutdate {
    -webkit-order: 9;
    order: 9;
  }
  .shout-container shoutinner {
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .shout-container shoutinner {
    max-width: 900px;
  }
}

/* END SHOUT STYLES */

/* gallery styles */

.gn-album-container,
.popup-gallery {
  max-width: none;
}

.gallery-section {
  background: black;
}

/* end gallery styles */

.gn-logo-bottom {
  text-align: center;
}

/* CDC */

.call-dir-section {
  background: black;
  color: #fff;
  font-family: var(--specialFont);
  text-transform: uppercase;
  margin-top: 6rem;
}

.call-dir-section .column {
  border: 2px solid #fff;
  padding: 0;
}

.call-dir-section a {
  width: 100%;
  display: inline-block;
  height: 100%;
  padding: 0.75rem;
}

.restaurant-btn {
  position: absolute;
  bottom: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  left: 0;
  width: 100%;
}

.restaurant-btn a {
  color: #fff;
  border: 1px solid black;
  background: black;
  font-weight: bold;
}

.restaurant-btn a:hover {
  color: black;
  background: transparent;
  transition: all 0.3s;
}

@media (min-width: 1088px) {
  .restaurant-btn {
    bottom: 100px;
  }
  .restaurant-btn a {
    color: #000;
    border: 1px solid #fff;
    background: #fff;
    font-weight: bold;
  }
  .restaurant-btn a:hover {
    color: #fff;
    background: transparent;
    transition: all 0.3s;
  }
}

.footer-contact-list a,
.footer-contact-list i,
.footer-contact-list div {
  display: inline;
}

.about-mobile .container {
  max-width: 600px;
  margin: auto;
}

.mobile-ig i {
  font-size: 70px;
  color: black;
}

.about-mobile .container > p {
  margin: 10px 0;
}

#menuSectionOfSections > div {
  width: 25%;
}

#menuSectionOfSections {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}

.pricelistLastUpdated {
  width: 100%;
}

.menuSectionName {
  border-radius: 150px;
  background: black;
  color: #fff;
  font-family: var(--specialFont);
  font-size: 3rem;
}

#gallery h1 {
  font-size: 3rem;
  font-family: var(--specialFont);
  color: #fff;
  text-transform: capitalize;
}

.album-btn-container {
  text-align: center;
}

#gallery .album-btn-container a {
  display: inline-block;
  color: #fff;
  padding: 10px 25px;
  width: auto;
  border: 2px solid #fff;
}

@media (min-width: 768px) {
  .reservation-btn-phone {
    display: none;
  }
}

@media (max-width: 768px) {
  .reservation-phone {
    display: none;
  }
  .reservation-btn-phone {
  }
  .reservation-btn-phone a {
    padding: 5px;
    display: inline-block;
    margin-top: 10px;
    background: #cc0000;
    width: 100%;
    border-radius: 5px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  #menuSectionOfSections {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  #menuSectionOfSections > div {
    width: 90%;
    height: auto;
  }
}

.cta.is-black {
  color: #fff;
  font-family: var(--specialFont);
  /* border: 1px solid black; */
  border-radius: 15px;
  /* background: black; */
}

.cta.is-black:hover {
  background: transparent;
  color: var(--primary);
  transition: all 0.3s;
}

.heavy-nav {
  background: rgba(0, 0, 0, 0.836);
}

.specials-on-home {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  background: #000000;
  padding: 20px 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.specials-on-home h1 {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.specials-on-home p {
  margin-bottom: 5px;
  font-size: 17px;
  color: #ffffff;
}

.specials-on-home p strong {
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 768px) {
  .specials-on-home {
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}

.secure-form-item iframe {
  height: 75px;
}

.columns.is-mobile {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}