body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

/* Navbar Section */
.navbar {
  background-color: #ffffff;
}
.navbar-brand img {
  width: auto;
  height: 70px;
}
a.active {
  color: #f5171f !important;
}
.nav-item a {
  font-size: 18px;
  color: #000;
}
.nav-item a:hover {
  color: #f5171f !important;
}
.btn-gofood {
  background-color: #f5171f;
  color: #fff !important;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  border: 1px solid #f5171f;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
}
.btn-gofood:hover {
  background-color: #fff;
  color: #f5171f !important;
  border: 1px solid #f5171f;
  transition: 0.3s;
}
.call-icon {
  margin-top: -3px;
}

/* Hero- Section */
.hero-section {
  background: url("assets/hero-bg.webp"), #f5171f;
  background-position: center;
  background-size: cover;
  padding: 150px 10px;
}
.hero-spoon-border {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.hero-border-section {
  width: 93%;
  border-top: 2px dashed #fff;
}
.hero-title {
  color: #fff;
  font-size: 90px;
  line-height: 100px;
  font-weight: 900;
  font-style: italic;
  margin-bottom: 20px;
}
span.hero-sp-title {
  color: #ffea00 !important;
}
.hero-para {
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
  margin-bottom: 50px;
}
.hero-go-food-btn a {
  background-color: #fff;
  color: #f5171f;
  border: 1px solid #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
}
.hero-go-food-btn a:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* Food Section */
.food-section {
  background-color: #fff;
  padding: 80px 10px;
}
.food-header-section {
  margin-bottom: 50px;
}
.food-header-title {
  font-size: 68px;
  line-height: 70px;
  font-weight: 900;
  font-style: italic;
}
.food-header-border {
  border-top: 3px dotted #000;
  width: 100%;
  margin-top: 45px;
}
.food-header-view-all-btn a {
  background-color: #f5171f;
  color: #fff;
  padding: 10px 15px;
  border-radius: 15px;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
}
.food-item-col {
  display: flex !important;
  justify-content: center !important;
}
.product-card {
  width: 300px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
.image-container {
  position: relative;
}
.image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}
.overlay {
  position: absolute;
  top: 50px;
  left: 45px;
  width: 70%;
  height: 70%;
  background-color: #f5171ea2;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}
.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: 5px;
  text-transform: capitalize;
}
.display-item-price {
  font-size: 16px;
  color: #ffea00;
  display: inline-block;
  padding: 3px 5px;
}

/* Drink Section */
.drink-section {
  background-image: url("assets/drink-section-bg.webp");
  background-position: center;
  background-size: cover;
  padding: 80px 10px;
}
.drink-header-title {
  font-size: 70px;
  line-height: 70px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
}
.drink-header-border {
  border-top: 3px dotted #fff;
  width: 100%;
  margin-top: 45px;
}
.drink-header-view-all-btn a {
  background-color: #fff;
  color: #f5171f;
  padding: 10px 15px;
  border-radius: 15px;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
}

/* Experienced Section */
.experienced-section {
  background-color: #ffffff;
  padding: 80px 10px;
}
.experienced-inner-section {
  width: 70%;
}
.experienced-title {
  text-align: center;
  font-size: 70px;
  font-weight: 900;
  font-style: italic;
  color: #000000;
  line-height: 75px;
  padding: 0 70px;
  margin-bottom: 40px;
}
.experienced-left {
  background-color: #f5171f;
  height: 300px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.clock-icon {
  margin-bottom: 20px;
}
.clock-icon img {
  height: 100px;
}
.day-and-time {
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}
.expreienced-para {
  color: #000;
  text-align: justify;
  font-size: 18px;
  margin-bottom: 50px;
}
.expreienced-icons img {
  background-color: #f5171f;
  padding: 15px;
  border-radius: 10px;
  margin-right: 10px;
}

/* Find Us Section */
.find-us-section {
  background-image: url("assets/contact-us-bg.webp");
  background-position: center;
  background-size: cover;
  padding: 80px 10px;
}
.find-us-inner-section {
  width: 70%;
}
.find-us-title {
  text-align: center;
  font-size: 70px;
  font-style: italic;
  color: #ffffff;
  line-height: 75px;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.map-and-form-section {
  margin-bottom: 20px;
}
.find-us-location {
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
}
.location {
  margin-right: 10px;
}
.location-address {
  color: #000000;
  font-size: 18px;
}
.find-us-input-field {
  height: 60px;
  margin-bottom: 10px;
  background-color: #ffffff50;
  border: none;
}
.find-us-input-field::placeholder {
  color: #ffffff;
  text-transform: capitalize;
}
.find-us-submit-btn {
  height: 60px;
  background-color: #ffffff;
  color: #e2282b;
  width: 100%;
  text-align: start;
}
.find-us-submit-btn:hover {
  background-color: #710000;
  color: #fff;
}
.find-us-map iframe {
  width: 100%;
  height: 270px;
  border-radius: 10px;
}

/* SEO Section */
.seo-section {
  padding: 80px 10px;
  background-color: #ffffff;
}
.seo-section-title {
  color: #000000;
  font-size: 62px;
  font-style: italic;
}
.seo-section-body p {
  text-align: justify;
  font-size: 17px;
  color: #000000;
}
.seo-link {
  color: rgb(0, 0, 0);
}

/* Thanks Section */
.thanks-section {
  background-image: url("assets/thanks-bg.webp");
  background-position: center;
  background-size: cover;
  padding: 80px 10px;
}
.thanks-inner-section {
  background-color: #f5171f;
  padding: 80px;
}
.thanks-title {
  color: #ffffff;
  font-style: italic;
  text-align: center;
  font-size: 70px;
  line-height: 70px;
  font-weight: bold;
  margin-bottom: 20px;
}
.thanks-para {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  padding: 0px 120px;
}
.thanks-go-btn-section {
  text-align: center;
}
.thanks-go-btn-section a {
  background-color: #fff;
  color: #f5171f;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
}
.thanks-go-btn-section a:hover {
  background-color: #e4e4e4;
  color: #000;
}

/* Footer Section */
.footer-section {
  background-color: #ffffff;
  padding: 80px 10px;
}
img.footer-logo-img {
  height: 50px;
  width: auto;
  margin-top: 7px;
}
.footer-para {
  color: #000000;
  text-align: justify;
  padding: 0px 10px;
  font-size: 17px;
}
.copyright-section {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-style: italic;
  background-color: #e2282b;
}

/* Menu Hero Section */
.menu-hero-section {
  background-image: url("assets/menu-hero-bg.webp");
  background-position: center;
  background-size: cover;
  padding: 150px 10px;
}
.menu-hero-inner-section img {
  display: block;
  margin: auto;
  width: 40%;
  margin-bottom: 30px;
}
.menu-hero-title {
  font-size: 90px;
  line-height: 90px;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}
.menu-hero-para {
  font-size: 18px;
  font-style: italic;
  color: #fff;
  padding: 0px 220px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 100px;
}
.menu-go-food-btn {
  text-align: center;
}
.menu-go-food-btn a {
  background-color: #fff;
  color: #f5171f;
  border: 1px solid #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
}
.menu-go-food-btn a:hover {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* Food List */
.food-lists {
  margin-top: 50px;
}
.list-row {
  background-color: #F5171F;
  padding: 10px 0;
  font-size: 18px;
  font-style: italic;
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.list-food-name {
  color: #fff;
  text-transform: capitalize;
}
.list-food-border {
  border-top: 1px dotted #fff;
  width: 80%;
}
.list-food-price {
  color: #FFEA00;
  text-align: end;
}
.left-list-section {
  padding-right: 20px;
}
.right-list-section {
  padding-left: 20px;
}
.list-row-2 {
  background-color: #FFF;
  padding: 10px 0;
  font-size: 18px;
  font-style: italic;
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.list-food-name-2 {
  color: #000000;
  text-transform: capitalize;
}
.list-food-border-2 {
  border-top: 1px dotted #000000;
  width: 80%;
}
.list-food-price-2 {
  color: #F5171F;
  text-align: end;
}