body {
  margin: 0;
  font-family: Inter, sans-serif;
}

/* Navbar Section */
.navbar-brand img {
  width: auto;
  height: 60px;
}
.nav-link {
  color: #ffffff;
}
.navbar-nav {
  background-color: #c50007;
  padding: 0 10px;
  border-radius: 10px;
}
.nav-item .active {
  color: #ffd940 !important;
}
.nav-item .nav-link:hover {
  color: #ffd940 !important;
}

/* Hero Section */
.hero-section {
  background-image: url("assets/hero-bg.webp");
  background-position: center;
  background-size: cover;
  height: 1032px;
  padding: 220px 10px 100px 10px;
}
.hero-title {
  color: #ffd940;
  font-size: 90px;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 100px;
  font-family: Livvic, sans-serif;
  margin-bottom: 30px;
}
.hero-para {
  color: #fff;
  font-size: 18px;
  width: 50%;
  text-transform: capitalize;
  margin-bottom: 65px;
}
.hero-go-btn a {
  text-decoration: none;
  background-color: #c50007;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
}
.hero-go-btn a:hover {
  background-color: #9c0207;
}

/* Makanan Food Display Section */
.makanan-food-display-section {
  padding: 0px 10px 80px 10px;
}
.makanan-border-section {
  border-width: 3px 0 0 0;
  border-style: solid;
  border-image-source: linear-gradient(to left, red, rgba(0, 0, 0, 0));
  border-image-slice: 1;
  height: 3px;
  margin-top: 33px;
  margin-bottom: 40px;
}
.makanan-title {
  font-family: Livvic, sans-serif;
  color: #000;
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  font-weight: 600;
}
.food-item {

  margin-top: 150px;
}
.food-item-inner {
  min-height: 250px;
  border: #c50007 1px solid;
  border-radius: 20px;
  position: relative;
}
.food-item-image {
  position: relative;
  margin-top: -107px;
}
.food-item-image img {
  display: block;
  margin: auto;
  height: 215px;
  width: 215px;
  border-radius: 50%;
  border: #c50007 4px solid;
}
.food-item-name {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #000;
  text-align: center;
  margin-top: 20px;
  padding: 0px 5px;
  margin-bottom: 20px;
  height: 51px;
}
.food-item-price-section {
  text-align: center;
  margin-bottom: 25px;
}
.food-item-price {
  color: #fff;
  background-color: #c50007;
  font-size: 16px;
  font-weight: 600;
  display: inline;
  padding: 8px 33px;
  border-radius: 20px 0 30px 20px;
}
.food-list {
  margin-top: 40px;
}
.left-list {
  margin-right: 15px;
}
.right-list {
  margin-left: 15px;
}
.item-row {
  border: 1px solid #c50007;
  padding: 10px 5px;
  border-radius: 25px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}
.item-row:hover {
  background-color: #c50007;
  color: #ffd940;
}
.item-border {
  height: 1px;
  border-top: 1px dashed #c50007;
}
.item-row:hover .item-border {
  border-top: 1px dashed #ffd940;
}
.item-price {
  text-align: end;
}
.makanan-bottom-section {
  margin-top: 40px;
}
.makanan-bottom-border-section {
  border-width: 3px 0 0 0;
  border-style: solid;
  border-image-source: linear-gradient(to left, red, rgba(0, 0, 0, 0));
  border-image-slice: 1;
  height: 3px;
  margin-top: 22px;
  margin-bottom: 40px;
}
.makanan-list-btn {
  display: flex;
  justify-content: end;
}
.makanan-list-btn button,
.makanan-list-btn button:hover {
  background-color: #c50007;
  color: #fff;
  font-size: 20px;
}
img.view-less {
  transform: rotate(180deg);
  margin-top: -5px;
}
.list-hide {
  display: none;
}
#makanan-view-less-btn-section {
  display: none;
}

/* Minuman Food Display Section */
.minuman-food-display-section {
  background-image: url("assets/minuman-food-section-bg.webp");
  background-position: center;
  background-size: cover;
  padding: 80px 10px 50px 10px;
}
.minuman-left-border-section {
  border-width: 3px 0 0 0;
  border-style: solid;
  border-image-source: linear-gradient(
    to left,
    rgb(255, 255, 255),
    rgba(0, 0, 0, 0)
  );
  border-image-slice: 1;
  height: 3px;
  margin-top: 33px;
  margin-bottom: 40px;
  width: 100%;
}
.minuman-right-border-section {
  border-width: 3px 0 0 0;
  border-style: solid;
  border-image-source: linear-gradient(
    to right,
    rgb(255, 255, 255),
    rgba(0, 0, 0, 0)
  );
  border-image-slice: 1;
  height: 3px;
  margin-top: 33px;
  margin-bottom: 40px;
  width: 100%;
}
.minuman-title {
  font-family: Livvic, sans-serif;
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  font-weight: 600;
}
.minuman-food-item-inner {
  min-height: 250px;
  border: #c50007 1px solid;
  border-radius: 20px;
  position: relative;
  background-color: #fff;
}

/* Minuman Food List Section */
.minuman-food-list-section {
  background-color: #fff;
  padding: 20px 10px 80px 10px;
}
.minuman-list-hide {
  display: none;
}
#minuman-view-less-btn-section {
  display: none;
}

/* We Are Waiting Section */
.we-are-waiting-section {
  background-image: url("assets/we-are-waiting-bg.webp");
  background-position: center;
  background-size: cover;
  padding: 80px 10px;
}
.we-are-waiting-header-section {
  margin-bottom: 40px;
}
.we-are-waiting-title {
  font-family: Livvic, sans-serif;
  color: #ffffff;
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  font-weight: 600;
}
.we-are-waiting-left-border-section {
  border-width: 3px 0 0 0;
  border-style: solid;
  border-image-source: linear-gradient(
    to left,
    rgb(255, 255, 255),
    rgba(0, 0, 0, 0)
  );
  border-image-slice: 1;
  height: 3px;
  margin-top: 33px;
  margin-bottom: 40px;
  width: 100%;
}
.we-are-waiting-right-border-section {
  border-width: 3px 0 0 0;
  border-style: solid;
  border-image-source: linear-gradient(
    to right,
    rgb(255, 255, 255),
    rgba(0, 0, 0, 0)
  );
  border-image-slice: 1;
  height: 3px;
  margin-top: 33px;
  margin-bottom: 40px;
  width: 100%;
}
.we-are-waiting-content {
  width: 100%;
}
.waiting-input {
  height: 50px;
  margin-bottom: 10px;
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #fff;
}
.waiting-input::placeholder {
  color: #fff;
  font-size: 14px;
}
.waiting-submit-btn
{
  height: 50px;
  width: 100%;
  background-color: #fff;
  color: #c50007;
  margin-top: 20px;
  font-weight: 600;
  transition: all .5s ease-in-out;
}
.waiting-submit-btn:hover  {
  transform: scale(1.1);
  background-color: #fff;
  color: #c50007;
}
.content-md-border img {
  height: 250px;
}
.time-day-section {
  height: 250px;
  background-color: #fff;
  border-radius: 10px;
}
.location-section {
  height: 250px;
  background-color: #fff;
  border-radius: 10px;
}
.time-day-text {
  margin-top: 10px;
}
.location-text {
  margin-top: 10px;
  text-align: justify;
  padding: 0 24px;
  font-size: 12px;
}

/* Thanks Section */
.thanks-section {
  background-image: url("assets/thanks-bg.webp");
  background-position: center;
  background-size: cover;
  padding: 80px 10px;
}
.thanks-title {
  font-size: 80px;
  font-weight: 600;
  line-height: 80px;
  color: #fff;
  text-align: end;
  font-family: Livvic, sans-serif;
  margin-bottom: 30px;
}
.thanks-para {
  font-size: 18px;
  line-height: 24px;
  text-align: end;
  color: #fff;
  width: 50%;
  margin-bottom: 50px;
}
.thanks-go-btn {
  text-align: end;
}
.thanks-go-btn a {
  text-decoration: none;
  background-color: #c50007;
  color: #fff;
  padding: 10px 15px;
  border-radius: 5px;
}
.thanks-go-btn img {
  height: 12px;
  margin-top: -3px;
}

/* SEO Section */
.seo-section {
  padding: 80px 10px;
  background-color: #c50007;
}
.seo-section-title {
  color: #ffffff;
  font-size: 54px;
  font-weight: 600;
}
.seo-section-body p {
  text-align: justify;
  font-size: 17px;
  color: #ffffff;
}
.seo-link {
  color: rgb(255, 255, 255);
}

/* Footer Section */
.footer-section {
  background-color: #fff;
  padding: 80px 10px;
}
.content-section {
  margin-bottom: 20px;
}
.map-section iframe {
  border-radius: 10px;
  width: 100%;
  height: 333px;
}
a.footer-brand-logo {
  margin-right: 80px;
}
a.footer-instagram-logo {
  margin-right: 10px;
}
.footer-para {
  padding-right: 20px;
  text-align: justify;
  margin-bottom: 20px;
}
.footer-location{
    background-color: #c50007;
    border-radius: 10px;
    padding: 10px;
}
.footer-location-address{
    color: #fff;
    padding-left: 20px;
}