:root {
  --color-accent: #993443;
  --color-primary: #cf9645;
  --color-text-content: #3c3c3c;
}

* {
  box-sizing: border-box;
}

a,
img {
  display: block;
}
a:hover {
  color: var(--color-primary);
}

html {
  scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: "Lato", sans-serif;
  text-rendering: auto;
}

.btn.btn--menu {
  display: block;
  border: 3px solid #ffffff;
  border-radius: 3px;
  color: #ffffff;
  font-weight: 500;
  height: 51px;
  width: 200px;
  padding: 10px;
  font-size: 20px;
  margin: 35px auto;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.btn.btn.btn--menu:hover {
  background-color: #cf9645;
  border-color: #cf9645;
}

.bg-accent {
  background-color: var(--color-accent) !important;
}
.bg-chalk {
  background-image: url(/static/img/roset_chalk.jpg) !important;
  background-size: cover !important;
  background-position: center !important;
}

.no-p {
  padding: 0 !important;
}
.text-center {
  text-align: center !important;
}
.text-justify {
  text-align: justify !important;
}
.text-left {
  text-align: left !important;
}
.text-accent {
  color: var(--color-accent) !important;
}
.text-primary {
  color: var(--color-primary) !important;
}
.text-white * {
  color: #ffffff !important;
}
.no-tt * {
  text-transform: none !important;
}

.border-side {
  border-right: none;
  border-left: none;
}
@media (min-width: 773px) {
  .border-side {
    border-right: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
  }
}

.banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 795px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(/static/img/home_banner.jpg);
  background-size: cover;
  background-position: center;
}
.banner-img {
  height: auto;
  width: 80%;
  max-width: 355px;
}

.link-arrow {
  position: absolute;
  bottom: 0;
  margin-bottom: 78px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 74px;
  background-color: rgba(0, 0, 0, 0.92);
  position: fixed;
  z-index: 10000;
}
@media (max-width: 935px) {
  .navbar {
    padding: 0 25px;
  }
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 900px;
  height: 100%;
}
.navbar-item-group {
  display: flex;
  align-items: center;
  transition-timing-function: ease;
  transition-duration: 0.2s;
  transition-property: opacity;
}
@media (max-width: 900px) {
  .navbar-item-group {
    visibility: hidden;
    opacity: 0;
    top: 74px;
    left: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.92);
    width: 100%;
    padding: 0 30px 30px;
    flex-direction: column;
    transition: opacity 0.2s ease-out;
  }
  .navbar-item-group.expanded {
    visibility: visible;
    opacity: 1;
  }
}
.navbar-item {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0 31px;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 15px;
}
.navbar-logo {
  height: 54px;
  width: 104px;
}
.navbar-logo img {
  height: 100%;
  width: 100%;
}

.navbar-toggle {
  visibility: hidden;
  margin: 0;
  cursor: pointer;
  border: 0;
  background-color: transparent;
}
@media (max-width: 900px) {
  .navbar-toggle {
    visibility: visible;
  }
}
.navbar-toggle-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}
.navbar-toggle-inner,
.navbar-toggle-inner:after,
.navbar-toggle-inner:before {
  display: block;
  position: absolute;
  width: 40px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #fff;
}
.navbar-toggle-inner:before {
  top: 10px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform, opacity;
}
.navbar-toggle-inner:after {
  top: 20px;
}
.navbar-toggle-inner:before,
.navbar-toggle-inner:after {
  display: block;
  content: "";
}
.navbar-toggle-box.active .navbar-toggle-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.navbar-toggle-box.active .navbar-toggle-inner:after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}
.navbar-toggle-box.active .navbar-toggle-inner:before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.overlay {
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.overlay.open {
  display: block;
}

.scroll-top {
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 0 20px 20px 0;
  z-index: 1000;
  transform: rotate(180deg);
  transition: opacity 0.218s ease-out;
  opacity: 0;
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
}

.section {
  width: 100%;
  padding: 80px;
  overflow: hidden;
}
.section-header {
  text-align: center;
  margin: 25px 0;
}
.section-content {
  max-width: 681px;
  margin: 0 auto;
}

.section--history {
  max-width: 885px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1050px) {
  .section--history {
    flex-direction: column;
    align-items: center;
  }
}
.history-content {
  width: 45%;
}
@media (max-width: 1050px) {
  .history-content {
    width: 100%;
  }
}
.section--history > div > p {
  font-size: 14px;
}

.history-img {
  width: 100%;
  height: auto;
}

.section--map {
  height: 480px;
}

.specials-title {
  margin: 0;
  color: #ffffff;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.specials-subtitle {
  margin: 1px 0 55px 0;
  color: var(--color-primary);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.category-group {
  margin: 0 auto;
  max-width: 865px;
  display: flex;
  justify-content: center;
}
@media (max-width: 772px) {
  .category-group {
    flex-direction: column;
    align-items: center;
  }
}
.category {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 109px;
  max-width: 279px;
  text-align: center;
  padding: 0 8px;
}
@media (max-width: 772px) {
  .category {
    margin-top: 35px;
  }
  .category:first-child {
    margin-top: 0px;
  }
}
.category-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 104px;
}
.category-head img {
  max-height: 104px;
}
.category-title {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 15px 0 2px 0;
}
.category-footer {
  margin-bottom: 20px;
}
.category-footer img {
  width: 100%;
}

.item {
  text-align: center;
  margin-bottom: 18px;
}
.item-title {
  color: #ffffff;
  font-size: 1rem;
  text-transform: uppercase;
}
.item-price {
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section--m {
  overflow: hidden;
}
.section--text p {
  color: var(--color-text-content);
  font-size: 16px;
  line-height: 24px;
}

.section--prepared-meals {
  background-color: #ffffff;
}
.prepared-meals-title {
  margin: 0;
  color: var(--color-primary);
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 10px;
  text-transform: uppercase;
}

.contact-group {
  margin: 0 auto;
  max-width: 865px;
  display: flex;
  justify-content: center;
}
@media (max-width: 849px) {
  .contact-group {
    flex-direction: column;
    align-items: center;
  }
}
.contact-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 109px;
  max-width: 279px;
  text-align: left;
  padding: 0 8px;
}
@media (max-width: 849px) {
  .contact-item {
    padding: 0;
    margin-bottom: 40px;
    text-align: center;
  }
  .contact-item:last-child {
    margin-bottom: 0;
  }
}
.contact-item p {
  margin: 6px 0;
}
.contact-item-head {
  text-transform: uppercase;
}
@media (max-width: 849px) {
  .contact-item-head h4 {
    margin: 0 10px 10px;
  }
}
.contact-item-content {
  font-size: 14px;
}
@media (max-width: 849px) {
  .contact-item-content h4 {
    margin: 0;
  }
}
.contact-item-content h3 {
  margin-bottom: 0;
}
.contact-item.centered {
  align-items: center;
  justify-content: center;
}

td.day {
  padding: 0;
  padding-right: 8px;
}
