body {
  margin: 0;
  font-family: "Pragati Narrow", sans-serif;
}

/* Header Section */
.header-section {
  padding-bottom: 50px;
  background-image: url("assets/hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Topbar Section */
.topbar-section {
  background-color: #ff7b2b;
  padding: 5px 0px;
}
.topbar-inner-section {
  margin-right: 13px;
}
.topbar-instagram-icon {
  margin-right: 5px;
}

/* Navbar Section */
.navbar {
  padding: 0px;
  background-color: #fff;
}
.navbar-brand {
  padding-top: 0px;
  padding-bottom: 0px;
}
.navbar-brand img {
  width: auto;
  height: 82px;
  padding: 5px;
}
.nav-item {
  font-weight: 400;
}
.nav-item a {
  color: #000000;
  transition: all .5s ease-in-out;
}
.nav-item a:hover {
  color: #ff7b2b;
}
.btn-gofood {
  background-color: #ff7b2b;
  color: #fff !important;
  border-radius: 10px;
  padding: 7px 15px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
  height: 40px;
  border: 1px solid #ff7b2b !important;
}
.btn-gofood:hover {
  background-color: #ffffff;
  color: #ff7b2b !important;
  transition: 0.3s;
}

/* Hero-Section */
.hero-section {
  padding: 80px 10px;
}
.hero-top-icon img {
  display: block;
  margin: auto;
}
.hero-title {
  text-align: center;
  font-size: 85px;
  line-height: 100px;
  font-weight: bold;
  padding: 20px 78px;
  color: #ff7b2b;
  text-transform: capitalize;
  position: relative;
}
.hero-para {
  position: relative;
  color: #8a8a8a;
  text-align: center;
  font-size: 20px;
  width: 60%;
  padding: 40px 30px;
  padding-top: 100px;
  padding-left: 30px;
  padding-bottom: 80px;
  padding-right: 30px;
  margin-top: -100px;
  border: 2px solid transparent;
  border-image: linear-gradient(to top, #ff7b2b, rgba(255, 255, 255, 0));
  border-image-slice: 1;
  margin-bottom: 40px;
}
.hero-btn {
  text-align: center;
  position: relative;
  margin-top: -56px;
}
.hero-btn a {
  text-decoration: none;
  background-color: #ff7b2b;
  font-size: 20px;
  color: #fff;
  padding: 5px 15px;
  border-radius: 10px;
}

/* Contact Section */
.contact-section {
  background-color: #ff7b2b;
  padding: 80px 10px;
}
input.contact-input-field {
  background-color: #ffffffc5;
  height: 70px;
  border: none;
}
input.contact-input-field::placeholder {
  font-size: 20px;
}
.contact-submit-btn {
  background-color: #fff;
  color: #ff7b2b;
  width: 100%;
  height: 70px;
  text-align: left;
  font-size: 20px;
}
.contact-submit-btn:hover {
  background-color: #d8d8d8;
  color: #ff7b2b;
}
.btn-right-arrow {
  margin-left: 10px;
}

/* Food Section */
.food-section {
  background-color: #fff;
  padding: 80px 10px;
}
.food-header-title-section {
  display: flex;
  flex-direction: row;
}
.food-header-section {
  margin-bottom: 20px;
}
.food-header-title {
  font-size: 90px;
  font-weight: bold;
  color: #ff7b2b;
}
.food-header-para {
  font-size: 22px;
}
.food-items .row {
  display: flex;
  justify-content: center;
}
.food-items .row .col-md-3 {
  display: flex;
  justify-content: center;
}
.product-card {
  width: 300px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  border-radius: 10px;
}
.image-container {
  position: relative;
}
.image-container img {
  display: block;
  width: 300px;
  height: 300px;
  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: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.display-item-price {
  font-size: 24px;
  color: #ff7b2b;
  display: inline-block;
}

/* Drink Section */
.drink-section {
  background-color: #ff7b2b;
  padding: 80px 10px;
}
.drink-header-section {
  margin-bottom: 40px;
}
.drink-header-title-section {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.drink-header-title {
  font-size: 90px;
  font-weight: bold;
  color: #ffffff;
}
.drink-header-para {
  font-size: 22px;
  color: #fff;
}
.drink-items .row {
  display: flex;
  justify-content: center;
}
.drink-items .row .col-md-4 {
  display: flex;
  justify-content: center;
}
.product-card-2 {
  width: 400px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
  border-radius: 10px;
}
.product-card-2 .image-container {
  position: relative;
}
.product-card-2 .image-container img {
  display: block;
  width: 400px;
  height: 300px;
  transition: filter 0.3s ease;
}
.product-card-2 .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-2:hover .image-container img {
  filter: brightness(70%);
}
.product-card-2:hover .overlay {
  opacity: 1;
}
.overlay .text {
  color: white;
  text-align: center;
  padding: 20px;
}
.display-item-name {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.display-item-price {
  font-size: 24px;
  color: #ff7b2b;
  display: inline-block;
}

/* About Us Section */
.about-us-section {
  background-color: #fff;
  padding: 80px 10px;
}
.about-us-inner-section {
  background-image: url("assets/about-us-bg.webp");
  background-position: center;
  background-size: cover;
  padding: 60px;
  border-radius: 20px;
}
.about-us-inner-content-section {
  width: 50%;
}
.about-us-title {
  font-size: 80px;
  line-height: 90px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
.time-day-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.time-day-text {
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
}
.about-us-border {
  height: 2px;
  width: 100%;
  background-color: #fff;
  margin: 30px 0;
}
.location-address-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.address-text {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
}

/* Location Map Section */
.location-map-section {
  background-image: url("assets/location-map-bg.webp");
  background-position: top center;
  background-size: cover;
  padding: 80px 10px;
}
.location-map {
  width: 60%;
}
.location-map iframe {
  width: 100%;
  height: 600px;
  border-radius: 10px;
}

/* SEO Section */
.seo-section {
  background-color: #f0f0f0;
  padding: 80px 10px;
}
.seo-section-title {
  color: #000000;
  font-size: 74px;
  line-height: 74px;
  font-weight: 600;
}
.seo-section-body p {
  text-align: justify;
  font-size: 17px;
  color: #000000;
}
.seo-link {
  color: rgb(0, 0, 0);
}

/* Footer Section */
.footer-section {
  background-color: #ffffff;
  padding: 80px 10px;
}
img.footer-logo-img {
  height: 150px;
  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;
}
.copyright-section {
  background-color: #FF7B2B;
  color: #ffffff;
  text-align: center;
  padding: 10px 0;
}