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

/* Navbar Section */
.navbar-brand img {
  width: auto;
  height: 82px;
}
.nav-item {
  font-weight: 600;
}
.btn-gofood {
  background-color: #75342d;
  color: white;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
  height: 45px;
}
.btn-gofood:hover {
  background-color: #fff;
  color: #75342d;
  border: 1px solid #75342d;
  transition: 0.3s;
}

/* Hero Section */
.hero-section {
  background-image: url("assets/hero-bg.webp");
  background-position: center;
  background-size: cover;
  height: 680px;
}
.hero-inner-section {
  background-color: rgba(0, 0, 0, 0.541);
  width: 80%;
  padding: 30px;
}
.hero-title {
  font-size: 120px;
  line-height: 125px;
  text-align: center;
  font-family: "Protest Revolution", sans-serif;
  color: #ffbf68;
  margin-bottom: 20px;
}
.hero-para {
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.hero-buttons {
  text-align: center;
}
.hero-go-btn {
  background-color: #ffa52a;
  margin-right: 10px;
  font-weight: 500;
}
.hero-go-btn:hover {
  background-color: #bd6f03;
}
.hero-social-btn {
  background-color: #ffa52a;
  padding: 3px;
}
.hero-social-btn:hover {
  background-color: #bd6f03;
}

/* Chef's Choice Section */
.chefs-choice-section {
  background-color: #ffbf68;
  padding: 80px 10px 0px 10px;
}
.chefs-choice-title {
  color: #000;
  font-family: "Protest Revolution", sans-serif;
  font-size: 90px;
  line-height: 90px;
  text-align: center;
  padding-bottom: 30px;
}
.display-food-section {
  width: 80%;
}
.product-card {
  max-width: 225px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
.image-container {
  position: relative;
}
.image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover .image-container img {
  filter: brightness(70%);
}
.product-card:hover .overlay {
  opacity: 1;
}
.overlay .text {
  color: white;
  text-align: center;
  padding: 20px;
}
.display-item-name {
  font-size: 18px;
  margin-bottom: 10px;
}
.display-item-price {
  font-size: 16px;
  background-color: #ffbf68;
  color: #000;
  display: inline-block;
  padding: 3px 5px;
  border-radius: 5px;
}

/* Menu Section */
.menu-section {
  background-color: #fff;
  padding: 195px 10px 80px 10px;
  position: relative;
  margin-top: -160px;
}
.menu-header {
  margin-bottom: 30px;
}
.menu-title {
  font-family: "Protest Revolution", sans-serif;
  font-size: 80px;
  line-height: 80px;
  text-align: center;
}
.menu-border {
  height: 3px;
  background-color: #ffbf68;
  width: 90%;
}
.makanan-btn {
  background-color: #ffbf68;
  color: #000;
  padding: 10px 15px;
  margin-right: 10px;
  text-transform: capitalize;
  font-weight: 600;
}
.makanan-btn:hover {
  background-color: #fadfb9;
}
.minuman-btn {
  background-color: #fadfb9;
  color: #000;
  padding: 10px 15px;
  margin-right: 10px;
  text-transform: capitalize;
  font-weight: 600;
}
.minuman-btn:hover {
  background-color: #ffbf68;
}
.list-row {
  padding: 10px 0;
  font-size: 16px;
  border-radius: 25px;
  margin-bottom: 10px;
}
.list-food-name {
  color: #000000;
  font-weight: 400;
}
.list-food-border {
  height: 1px;
  width: 80%;
  background-color: #000000;
}
.list-food-price {
  color: #000000;
  font-weight: 500;
  text-align: end;
}
.left-menu-list {
  padding-left: 15px;
  padding-right: 15px;
}
.right-menu-list {
  padding-left: 15px;
  padding-right: 15px;
}
#minuman {
  display: none;
}
.bottom-border-section {
  height: 20px;
  width: 100%;
  background-color: #ffbf68;
  margin-top: 50px;
}

/* Contact Us Section */
.contact-us-section {
  background-color: #ffbf68;
  padding: 80px 10px;
}
.contact-us-inner-section {
  width: 70%;
}
.contact-us-title {
  font-family: "Protest Revolution", sans-serif;
  font-size: 50px;
  line-height: 55px;
  color: #000;
  margin-bottom: 20px;
}
.contact-us-day-time {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.contact-us-day-time img {
  margin-right: 10px;
}
.contact-us-day-time .day-time {
  font-size: 20px;
}
.contact-input {
  height: 60px;
  margin-bottom: 15px;
}
.contact-input::placeholder {
  color: #000;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-submit-btn {
  background-color: #000;
  color: #fffa69;
  width: 100%;
  text-align: start;
  height: 60px;
}
.location-address {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 40px;
  background-color: #000;
  padding: 10px;
  border-radius: 10px;
}
.location-address img {
  margin-right: 10px;
}
.location-address .address {
  color: #fff;
  font-size: 18px;
}
.map-section iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
}

/* Choosing Us Section */
.choosing-us-section {
  background-image: url("assets/choosing-us-bg.webp");
  background-position: center;
  background-size: cover;
  padding: 80px 10px;
}
.choosing-us-title {
  font-family: "Protest Revolution", sans-serif;
  color: #fffa69;
  font-size: 100px;
  line-height: 110px;
  text-align: center;
  margin-bottom: 50px;
}
.choosing-us-para {
  font-size: 18px;
  color: #fff;
  padding: 0 250px;
  text-align: center;
  margin-bottom: 70px;
}
.choosing-us-button {
  text-align: center;
}
.choosing-us-button a {
  display: inline;
  background-color: #fffa69;
  color: #000;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #fffa69;
}
.choosing-us-button a:hover {
  background-color: transparent;
  color: #fffa69;
  border: 1px solid #fffa69;
}

/* SEO Section */
.seo-section {
  padding: 80px 10px;
  background-color: #ffbf68;
}
.seo-section-title {
  color: #000000;
  font-size: 56px;
}
.seo-section-body p {
  color: #000000;
  text-align: justify;
  font-size: 17px;
}
.seo-link {
  color: rgb(0, 0, 0);
}

/* Footer Section */ 
.footer-section {
  background-color: #ffffff;
  padding: 100px 10px;
}
img.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
  margin: auto;
}
.footer-para {
  color: #000000;
  text-align: justify;
  padding: 0px 10px;
  font-size: 17px;
}
.footer-socials-icon a {
  background-color: #FFBF68;
  padding: 5px;
}
.footer-socials-icon a img{
    height: 40px;
}
.footer-socials-icon a:hover {
  background-color: #fda120;
}