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

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}
input:focus,
button:focus,
textarea:focus,
select:focus {
  box-shadow: none !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body.open-menu-container {
  overflow: hidden !important;
}

header {
  width: 100%;
  background: #221E20;
  position: sticky;
  transform: translateZ(0);
  z-index: 40;
}
header.sticky {
  position: fixed;
  z-index: 99;
}
header .nav-bar .element-holder.open-menu-container {
  position: relative;
  z-index: 50;
}
header .nav-bar .burgerIcon {
  cursor: pointer;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
header .nav-bar .burgerIcon .line {
  width: 1.5rem;
  height: 0.1875rem;
  border-radius: 0.625rem;
  background-color: #9E7E57;
  margin-bottom: 0.3125rem;
  cursor: pointer;
  transition: 0.5s linear;
  transform-style: preserve-3d;
}
header .nav-bar .burgerIcon .line:first-of-type.open-menu-container {
  transform: translate3d(0, 0.25rem, 0) rotateZ(45deg);
  background-color: #9E7E57;
}
header .nav-bar .burgerIcon .line:nth-last-of-type(1).open-menu-container {
  transform: translate3d(0, -0.25rem, 0) rotateZ(-45deg);
  background-color: #9E7E57;
}
header .nav-bar .burgerIcon .line:nth-of-type(2).open-menu-container {
  display: none;
}
header .nav-bar .logo-block-mob {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
}
header .nav-bar .logo-block-mob .logo-img img {
  max-width: 100%;
  height: auto;
}
header .nav-content {
  background-color: #221E20;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
header .nav-content.open-menu-container {
  height: 100vh;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
  overflow: auto;
  opacity: 1;
}
header .nav-content ul.nav-items {
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0 2rem;
}
header .nav-content ul.nav-items li.nav-item {
  color: #FFFFFF !important;
}
header .nav-content ul.nav-items li.nav-item a {
  font-family: "Goudy Bookletter 1911", serif;
  font-size: 1rem;
  text-transform: uppercase;
  transition: 0.2s linear;
  cursor: pointer;
}
header .nav-content ul.nav-items li.nav-item:hover {
  color: #9E7E57;
}
header .nav-content .site-social {
  margin-bottom: 1rem;
}
header .nav-content .site-social.site-social--bordered:before {
  content: "";
  display: block;
  border-bottom: 2px solid #9e7e57;
  margin-bottom: 1.875rem;
}
header .nav-content .site-social ul.social-accounts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
header .nav-content .site-social ul.social-accounts li a {
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  transition: 0.2s linear;
}
header .nav-content .site-social ul.social-accounts li a:hover {
  background-color: #9E7E57;
}
header .nav-content .site-social ul.social-accounts li a i {
  font-size: 1.3rem;
  color: #221e20;
}
header .nav-content .site-location {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
header .sub-header {
  background-color: #6f5441;
  color: white;
  text-align: center;
}

footer .footer-content-mobile {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
}
footer .footer-content-mobile .reserve-btn-mob {
  display: block;
  width: 100%;
  background-color: #d0bdae;
  border-top: 1px solid #FFFFFF;
  transition: all 0.2s ease-in-out 0s;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-family: "Goudy Bookletter 1911", serif;
  font-size: 1rem;
  color: #221e20;
  text-align: center;
}
footer .footer-content-mobile .reserve-btn-mob:hover {
  color: #fff;
  background-color: #9e7e57;
}

@media only screen and (min-width: 750px) {
  header {
    background: transparent;
    position: absolute;
  }
  header.sticky {
    background: #221E20;
  }
  header .nav-bar {
    background: transparent;
  }
  header .header-brand.sticky .logo-img img {
    transition: 0.5s ease-in-out;
    height: 5rem !important;
  }
  header .header-brand .logo-block .logo-img {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  header .header-brand .logo-block .logo-img img {
    height: 6.5rem;
  }
  header .nav-content {
    opacity: 1;
    position: static;
    transform: translateY(0);
    background: transparent;
    padding: 0.6rem 0;
    pointer-events: auto !important;
  }
  header .nav-content .nav-items {
    padding: 0 !important;
    margin-top: 0;
    flex-direction: row !important;
    gap: 0.6rem !important;
    justify-content: center;
  }
  header .sub-header {
    background: transparent;
  }
  footer {
    padding: 2rem 0;
    text-align: center;
    background: #000000;
  }
  footer ul.social-accounts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  footer ul.social-accounts li a {
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    transition: 0.2s linear;
  }
  footer ul.social-accounts li a:hover {
    background-color: #9E7E57;
  }
  footer ul.social-accounts li a i {
    font-size: 1.3rem;
    color: #221e20;
  }
  footer a {
    color: #FFFFFF;
    font-family: "Goudy Bookletter 1911", serif;
    font-size: 1rem;
    text-transform: uppercase;
    transition: 0.2s linear;
  }
  footer p {
    font-size: 1rem;
    color: #EFEFEF !important;
  }
}
@media only screen and (min-width: 1024px) {
  header .nav-content .nav-items {
    gap: 1rem !important;
  }
}
body h1, body h2, body h3, body h4 {
  font-family: "Goudy Bookletter 1911", serif;
  font-size: 1.406rem;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
}
body p, body a {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #EFEFEF;
}
body .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
body .main-btn {
  display: inline-block;
  background-color: #760018;
  border: 0 solid transparent;
  border-radius: 0 !important;
  transition: all 0.2s ease-in-out 0s;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  font-family: "Goudy Bookletter 1911", serif;
  font-size: 0.75rem;
  color: #FFFFFF !important;
}
body .main-btn.active, body .main-btn:hover {
  background-color: #5D0013 !important;
  color: #FFFFFF !important;
}
body .main-btn a {
  font-family: "Goudy Bookletter 1911", serif;
}

body {
  background-color: #000000;
}

.underline:after {
  content: "";
  display: block;
  width: 50px;
  background: #9e7e57;
  height: 2px;
  margin-top: 1rem;
}

main section .img-block {
  height: 15rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}
main section .text-content {
  padding: 2.31rem 2.8rem;
}
main section .text-content h4 {
  margin-bottom: 1.5rem;
}
main section .text-content p {
  margin-bottom: 1.5rem;
}
main section.bg-white {
  background-color: #FFFFFF;
}
main section.bg-white h4, main section.bg-white p {
  color: #221e20;
  text-align: left;
}
main section.hero-section {
  position: relative;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}
main section.hero-section .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
main section.about-us {
  text-align: center;
  padding: 4rem 0 !important;
  scroll-margin-top: 12rem;
}
main section.about-us .text-cont {
  padding: 0 2.31rem 2.8rem;
}
main section.about-us .text-cont span {
  color: #9E7E57;
  font-size: 1rem;
  text-transform: uppercase;
  font-family: "Goudy Bookletter 1911", serif;
  font-weight: 400;
  text-align: left;
  display: block;
}
main section.about-us .text-cont h3 {
  color: #221e20;
  text-align: left;
  text-transform: capitalize;
  text-decoration: underline;
  text-decoration-color: #9E7E57;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
main section.about-us .img-block {
  height: 20rem;
  background: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: left;
  padding: 0 2.31rem 2.8rem;
  overflow-x: auto;
}
main section.about-us .img-block picture,
main section.about-us .img-block img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main section.booking .img-block {
  background-image: url("../images/book-table-new.png");
}
main section.online-orders .img-block {
  background-image: url("../images/online-order-new.png");
}
main section.safe-cooking {
  padding: 2rem 0;
}
main section.safe-cooking .img-block {
  background-image: url("../images/food-safety.png");
}
main section.safe-cooking ul {
  color: #EFEFEF;
  list-style-type: disc;
}

@media only screen and (min-width: 500px) {
  section.about-us span {
    font-size: 1.5rem !important;
  }
  section.about-us h3 {
    font-size: 2.1rem !important;
  }
  section.about-us .img-block {
    min-height: 40rem;
  }
}
@media only screen and (min-width: 1000px) {
  main section {
    padding: 0 !important;
  }
  main section .row > * {
    padding: 0 0 !important;
  }
  main section .img-block {
    min-height: 28.25rem !important;
    height: 100%;
    padding: 0;
  }
  main section.about-us span {
    font-size: 1.5rem !important;
  }
  main section.about-us h3 {
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  main section.about-us p {
    font-size: 1rem;
    line-height: 2.3rem;
  }
  main section.about-us .img-block {
    height: 100%;
    padding: 0;
  }
}

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