body {
  margin: 0;
  font-family: "Sanchez", sans-serif;
}

/* Navbar Section */
.navbar {
  background-color: #ffeb3c;
  border-bottom: 5px solid #000;
  height: 100px;
}
.navbar-brand img {
  width: auto;
  height: 90px;
}
a.active {
  text-decoration: underline;
}
.nav-item a {
  font-size: 18px;
  color: #000;
}
.nav-item a:hover {
  text-decoration: underline;
}
.btn-gofood {
  background-color: #000;
  color: #ffeb3c !important;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 500;
  border: 1px solid #000;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
}
.btn-gofood:hover {
  background-color: transparent;
  color: #000 !important;
  border: 1px solid #000;
  transition: 0.3s;
}

/* Hero Section */
.hero-section {
  background-image: url("assets/hero-bg.webp");
  background-position: center;
  background-size: cover;
  padding: 120px 10px;
}
.hero-image {
  display: flex;
  align-items: center;
}
.hero-image img {
  width: 90%;
  height: auto;
  display: block;
  margin: auto;
}
.hero-slug {
  font-size: 24px;
  background-color: #ffeb3c;
  padding: 5px 8px;
  display: inline;
}
.hero-title {
  margin-top: 30px;
  font-size: 60px;
  line-height: 70px;
  text-transform: capitalize;
}
.hero-para {
  margin-top: 30px;
  font-size: 16px;
}
.hero-buttons {
  margin-top: 30px;
}
a.hero-go-food-btn {
  background-color: #000;
  color: #ffeb3c;
  border: 1px solid #000;
  margin-right: 10px;
}
a.hero-go-food-btn:hover {
  background-color: transparent;
  color: #000;
  border: 1px solid #000;
}

/* Food Section */
.food-section {
  background-color: #000;
  padding: 80px 0px;
}
.food-inner-section {
  background-color: #fff;
  border-radius: 250px;
  padding: 80px;
}
.food-item-section {
  margin-bottom: 50px;
}
.food-item-header-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.food-item-header-title {
  font-size: 60px;
  line-height: 60px;
  text-align: center;
}
button.arrow-btn {
  background-color: #ffeb3c;
  height: 39px;
  display: flex;
  align-items: center;
}
button.arrow-btn:hover {
  background-color: #e0ca02;
}
.food-item-header-section button.slick-disabled {
  background-color: #cac172ad !important;
}
.food-item-row-section {
  margin-top: 50px;
}
.food-item-col {
  display: flex !important;
  justify-content: center !important;
}
.product-card {
  width: 300px;
  height: 300px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  border-top-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.image-container {
  position: relative;
}
.image-container img {
  display: block;
 width: 100%;
  transition: filter 0.3s ease;
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #ffeb3cb2;
  display: flex;
  justify-content: start;
  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: rgb(0, 0, 0);
  text-align: center;
  padding: 20px;
}
.display-item-name {
  font-size: 18px;
  text-align: left;
}
.display-item-price-section {
  margin-top: 10px;
  text-align: left;
}
.display-item-price {
  font-size: 16px;
  background-color: #ffffff;
  color: #000000;
  display: inline-block;
  padding: 3px 5px;
  border-radius: 5px;
}

/* We Are Open Section */
.we-are-open-section {
  background-color: #ffeb3c;
  padding: 80px 10px;
}
.we-are-open-inner-section {
  width: 80%;
}
.we-are-open-title {
  text-align: center;
  font-size: 60px;
  line-height: 60px;
  color: #000;
  margin-bottom: 30px;
}
.we-are-open-para {
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
}
.clock-time-section {
  height: 170px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.clock-time-section img {
  margin-bottom: 10px;
  height: 50px;
}
.location-address-section {
  height: 170px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
.location-address-section img {
  margin-bottom: 10px;
  height: 50px;
}

/* Contact Section */
.contact-section {
  background-color: #fff;
  padding: 80px 10px;
}
.form-row {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-direction: row;
  align-items: center;
}
.col-input {
  flex: 1 0 25%;
}
input.contact-input-field {
  width: 100%;
  height: 80px;
  background-color: #dedede;
  border: none;
}
.contact-submit-btn {
  background-color: #000;
  border-radius: 10px;
  height: 80px;
  width: 80px;
}

/* Delicious Section */
.delicious-image-col {
  padding: 0px 0px;
}
.delicious-image-section img {
  height: auto;
  width: 100%;
}
.delicious-content-col {
  padding: 0px 0px;
  background-color: #ffeb3c;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.delicious-content-section {
  padding: 80px 150px 80px 80px;
}
.delicious-title {
  font-size: 60px;
  line-height: 65px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.delicious-para {
  font-size: 16px;
}

/* Location Map Section */
.location-map-section {
  background-color: #ffffff;
  padding: 80px 10px;
}
.location-map-inner-section iframe {
  height: 400px;
  width: 100%;
}

/* SEO Section */
.seo-section {
  padding: 80px 10px;
  background-color: #000000;
}
.seo-section-title {
  color: #ffffff;
  font-size: 56px;
  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: #FFEB3C;
  padding: 80px 10px;
}
img.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
  margin: auto;
}
.footer-para {
  color: #000000;
  text-align: justify;
  padding: 0px 10px;
  font-size: 17px;
}
.footer-socials-icon a {
  display: block;
  margin-bottom: 10px;
}
.footer-socials-icon img {
  height: 44px;
}
.copyright-section {
  text-align: center;
  padding: 10px 0;
  color: #ffffff;
  background-color: #000000;
}

.slick-slide {
  margin: 0 10px;
}