:root {
  --white: #ffffff;
  --coral: #e34646;
  --panna: #f4ede6;
  --codgray: #121212;
  --brown: #3e160a;

  --lora-serif: "Lora", sans-serif;
  --poppins-sans-serif: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Lora", sans-serif;
  color: #495057;
}

html,
body {
  background-color: #ffffff;
}

section {
  margin-top: 3rem;
}

/* =============================================================================
TYPOGRAPHY
============================================================================= */
.font-lora {
  font-family: var(--lora-serif) !important;
}
.font-poppins {
  font-family: var(--poppins-sans-serif) !important;
}

h1 {
  font-family: "Lora", sans-serif;
}

h2,
h3 {
  font-family: "Poppins", sans-serif;
  color: #121212;
}

h2 {
  font-weight: 700;
  font-size: 3rem;
  scroll-margin: 120px;
}
.banner-title {
  font-family: var(--poppins-sans-serif);
  font-weight: 700;
  font-size: 3rem;
  scroll-margin: 120px;
}

h3 {
  font-weight: 700;
  font-size: 1.5rem;
}

a {
  color: #ffffff;
}

a:hover {
  color: #ffffff;
}

a:focus {
  color: #ffffff;
}

.small {
  font-size: 0.75rem;
}

/* =============================================================================
UTILITIES
============================================================================= */
.text-large {
  font-size: 1.5rem;
  letter-spacing: 0.02rem;
}

.text-highlight {
  color: #73422d !important;
}
.text-brown {
  color: var(--brown) !important;
}

.bg-panna {
  background-color: #f4ede6;
}

.bg-coral {
  background-color: var(--coral);
}

.text-white {
  color: #ffffff;
}

.text-base {
  color: #121212;
}

.bold {
  font-weight: 700;
}

.scale-up {
  transform: scale(6);
  background-color: #ffffff !important;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.scale-up div {
  /* background-image: none !important; */
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.scale-down {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.scale-down div {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.cursor-pointer {
  cursor: pointer;
}

.vh-50 {
  height: 50vh;
}

/* =============================================================================
BUTTONS
============================================================================= */
.btn-primary {
  background-color: #121212;
  border-radius: 0px;
  border: 2px solid #121212;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Lora", serif;
  font-size: 1.5rem;
}

.btn-primary:hover {
  background-color: transparent;
  border: 2px solid #121212;
  color: #121212;
}

.btn-primary-light {
  background-color: #ffffff;
  border-radius: 0px;
  border: 2px solid #ffffff;
  color: #121212;
  text-transform: uppercase;
  font-family: "Lora", serif;
  font-size: 1.5rem;
}

.btn-primary-light:hover {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn-outline-primary {
  background-color: transparent;
  border-radius: 0px;
  border: 2px solid #121212;
  color: #121212;
  text-transform: uppercase;
  font-family: "Lora", serif;
  font-size: 1.5rem;
}

.btn-outline-primary:hover {
  background-color: #12121236;
  border: 2px solid #121212;
  color: #121212;
}

.btn-outline-primary-light {
  background-color: transparent;
  border-radius: 0px;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Lora", serif;
  font-size: 1.5rem;
}

.btn-outline-primary-light:hover {
  background-color: #ffffff36;
  border: 2px solid #ffffff;
  color: #ffffff;
}

/* =============================================================================
NAVBAR
============================================================================= */
.navbar {
  transition: 0.3s ease-in;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.navbar-dark {
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-active {
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.navbar-brand {
  font-family: "Lora", serif;
  color: #ffffff;
}

.navbar-blur {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%);
}

.nav-link {
  color: #ffffff;
}

.nav-link:hover {
  color: #a2a2a2;
}

.nav-link:focus {
  color: #a2a2a2 !important;
}

.nav-link:active {
  color: #a2a2a2 !important;
}

.nav-item a {
  font-family: "Poppins", sans-serif;
}

button:focus,
button:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.sub-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: scroll;
  list-style-type: none;
}

.sub-menu .nav-link {
  font-size: 0.8rem;
}

/* =============================================================================
DROPDOWN MENU
============================================================================= */

/* .dropdown {
  position: static;
} */

.dropdown-menu {
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-radius: 0;
  border: none;
  color: #ffffff;
  margin-top: 0 !important;
}

.dropdown-item {
  color: #ffffff;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #e9ecef;
  background-color: inherit;
}

.megamenu {
  padding: 20px 20px;
  width: 100%;
}

.order-card {
  aspect-ratio: 16/10;
  width: 100%;
  height: 6rem;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =============================================================================
CARD
============================================================================= */
.card {
  border-radius: 0;
}
.card-img-top {
  border-radius: 0;
}

/* =============================================================================
JUMBOTRON
============================================================================= */
#logo path {
  stroke-dasharray: 800px;
  stroke-dashoffset: 800px;
  animation: line-anim 5s ease forwards 1s, filler 0.8s ease forwards 4s;
}

@keyframes line-anim {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes filler {
  from {
    fill: transparent;
  }
  to {
    fill: #ffffff;
  }
}

.jumbotron-title {
  letter-spacing: 0.5rem;
  animation: fadein 1s ease-out forwards 4s;
  opacity: 0;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translate(0px, 20px);
  }
  to {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}

.jumbotron {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/cover-landing.png");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.jumbotron-wrapper {
  position: relative;
  background-color: #000000;
}
.jumbotron-wrapper video {
  min-width: 100%;
  min-height: 100%;
}
.image-gradient {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease-out;
}
.opacity-6 {
  opacity: 0.6;
}

.jumbotron-catering {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0)), url("../img/cover-catering.png");
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.jumbotron h1,
.jumbotron-catering h1 {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 400;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 0px;
}

.menu-cover {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15rem;
}

.menu-cover h3 {
  font-family: "Lora", sans-serif;
  text-shadow: 0px 0px 24px #000000;
}

.section-catering {
  height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/section-catering.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.section-ourstory {
  height: 100vh;
}

/* =============================================================================
REVIEWS
============================================================================= */
.review {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s ease, filter 1s ease;
}
.review.active {
  opacity: 1;
  filter: blur(0);
}
.review p {
  color: white;
}
.review img {
  display: block;
}

/* =============================================================================
IMAGE STACK GRID
============================================================================= */
.image-stack {
  display: grid;
}

.image-stack-top {
  z-index: 1;
  grid-column: 1 / span 2;
  grid-row: 2 / span 2;
}

.image-stack-bottom {
  grid-column: 2 / span 2;
  grid-row: 1 / span 2;
  background-color: #f4ede6;
}

/* =============================================================================
REVIEWS
============================================================================= */
.reviews {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reviews-container {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

/* =============================================================================
CATERING
============================================================================= */
.scaler {
  cursor: pointer;
}

.menu-section {
  margin: 0;
  padding-top: 1rem;
}

/* =============================================================================
MODALS
============================================================================= */
.modal-dialog {
  transform: none !important;
}

.modal-content {
  border-radius: 0;
}

.modal-header {
  border-radius: 0;
  border: none;
  padding: 0;
}
.modal-header img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.modal-btn-close {
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  margin: 1rem;
  padding: 0.5rem;
  border: 0;
}

/* =============================================================================
MENU
============================================================================= */
.section-cover {
  background-size: cover;
  background-position: center;
  padding: 4rem 2rem;
  margin-bottom: 2rem;
  background-color: #eaeaea;
}
.section-cover h2 {
  margin: 0;
  color: #ffffff;
  text-shadow: 0px 2px 20px #000000;
}

.menu-item {
  cursor: pointer;
}

.menu-price {
  font-family: "Poppins", sans-serif;
  color: #121212;
}

.food-menu {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.food-details {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.img-menu {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.div1 {
  grid-area: 1 / 1 / 2 / 6;
}

.div2 {
  grid-area: 1 / 6 / 2 / 13;
}

.div3 {
  grid-area: 2 / 1 / 3 / 13;
}

.div4 {
  grid-area: 3 / 1 / 4 / 13;
}

.div5 {
  grid-area: 4 / 1 / 5 / 13;
}

.food-title {
  font-family: "Poppins", sans-serif !important;
  color: #121212;
  font-weight: 700;
}

.food-details {
  font-family: "Lora", serif;
  margin-bottom: 0;
}

/* .menu-border {
  border: 2px solid #121212;
} */

/* =============================================================================
FOOTER
============================================================================= */
footer {
  background-color: var(--coral);
}

.parallax {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: -2;
}

footer p {
  color: var(--white);
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.nav-pills {
  background-color: #121212;
  padding: 0.5rem;
}

.madeby {
  font-size: 0.7rem;
  opacity: 0.5;
}

.madeby:hover {
  transition: opacity 0.3s ease-out;
  opacity: 1;
}

.madeby,
.madeby a {
  font-family: "Poppins", sans-serif;
  text-decoration: none !important;
}

/* =============================================================================
MOBILE LAYOUT
============================================================================= */
.mobile-only {
  display: none !important;
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 42px;
  }
  .jumbotron {
    background-attachment: unset;
  }

  .jumbotron-catering {
    background-position: right;
    background-attachment: unset;
  }

  .dropdown-menu {
    background: transparent;
  }

  .image-stack {
    display: flex;
    flex-direction: column;
  }

  .image-stack-bottom {
    text-align: center;
  }

  .gallery-stack {
    display: flex;
    flex-direction: column-reverse;
  }

  .gallery-stack-bottom {
    height: fit-content;
  }

  .menu-grid {
    display: flex;
    flex-direction: column;
  }

  .menu-grid a {
    margin-bottom: 2rem;
  }

  .food-menu {
    display: flex;
    flex-direction: column;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
  }

  .footer-block {
    font-family: "Poppins", serif;
    margin-top: 3rem;
    text-align: center;
  }

  .mobile-only {
    display: block !important;
  }
}
