body {
  margin: 0;
  font-family: "ProximaNova Regular", sans-serif;
}

/* Hero Section */
.hero-section {
  background-image: url("assets/black-smooth-wall-textured-background\ 1.webp");
  background-position: center;
  background-size: cover;
}
.hero-container {
  background-image: url("assets/Polygon\ 3.webp"), url("assets/green-line.webp");
  background-position: bottom center, 65% 57%;
  background-size: auto auto;
  background-repeat: no-repeat no-repeat;
}
/* Navbar Section */
.navbar {
  background-color: #80fd01;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  font-family: "ProximaNova Regular", sans-serif;
}
.navbar-brand img {
  width: auto;
  height: 70px;
}
.nav-item a {
  font-size: 18px;
  color: #000000;
  text-transform: uppercase;
}
.btn-gofood {
  background-color: #000000;
  color: #ffffff !important;
  border-radius: 10px;
  padding: 8px 20px;
  font-family: "ProximaNova Bold", sans-serif;
  font-weight: 600;
  border: 1px solid #000000;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
  text-transform: uppercase !important;
}
.btn-gofood:hover {
  background-color: #ffffff;
  color: #000000 !important;
  border: 1px solid #ffffff;
  transition: 0.3s;
}

/* Hero Content */
.hero-title {
  margin-top: 100px;
  text-align: center;
  color: #ffffff;
  font-size: 80px;
  line-height: 80px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "ProximaNova ScOsf Condensed Bold", sans-serif;
  margin-bottom: 20px;
}
.hero-para {
  font-family: "ProximaNova Regular", sans-serif;
  color: #ffffff;
  text-align: center;
  width: 50%;
  font-size: 18px;
  margin-bottom: 50px;
}
.hero-go-btn-section {
  text-align: center;
}
.hero-go-btn a {
  display: inline;
  text-decoration: none;
  background-color: #80fd01;
  color: #000000;
  font-family: "ProximaNova Bold", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 10px;
}
.hero-image {
  margin-top: 50px;
}
.hero-image img {
  display: block;
  margin: auto;
  height: 420px;
  width: auto;
}

.blank-section {
  height: 70px;
  background-color: #80fd01;
}

/* Food Section */
.food-section {
  background-image: url("assets/black-smooth-wall-textured-background\ 1.webp");
  background-position: center;
  background-size: cover;
  padding: 80px 10px;
}
.food-header-section {
  margin-bottom: 30px;
}
.food-title {
  font-family: "ProximaNova ScOsf Condensed Bold", sans-serif;
  font-size: 80px;
  line-height: 80px;
  color: #fff;
}
.food-title-border {
  border-top: 2px dashed #80fd01;
}
.food-arrow-buttons {
  display: flex;
  justify-content: end;
  gap: 10px;
}
.food-arrow-buttons button {
  background-color: #80fd01;
  border: none;
  padding: 10px 15px;
}
.food-arrow-buttons button.slick-disabled {
  background-color: #438302 !important;
}
.food-item-col {
  display: flex !important;
  justify-content: center !important;
}
.product-card {
  margin-right: 20px;
  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: 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;
}
.display-item-price-section {
  margin-bottom: 10px;
}
.display-item-price {
  font-size: 16px;
  background-color: #80fd01;
  color: #000000;
  display: inline-block;
  padding: 3px 5px;
  border-radius: 5px;
}

/* Drink Section */
.drink-section {
  background-color: #80fd01;
  padding: 80px 10px;
}
.drink-header-section {
  margin-bottom: 30px;
}
.drink-title {
  font-family: "ProximaNova ScOsf Condensed Bold", sans-serif;
  font-size: 80px;
  line-height: 80px;
  color: #000;
}
.drink-title-border {
  border-top: 2px dashed #000;
}
.drink-arrow-buttons {
  display: flex;
  justify-content: end;
  gap: 10px;
}
.drink-arrow-buttons button {
  background-color: #000;
  border: none;
  padding: 10px 15px;
}
.drink-arrow-buttons button.slick-disabled {
  background-color: #585757 !important;
}
.drink-item-col {
  display: flex !important;
  justify-content: center !important;
}

/* Get To Know Us Section */
.gtku-section {
  background-image: url("assets/get-to-know-us-bg.webp");
  background-position: center;
  background-size: cover;
  padding: 80px 10px 0px 10px;
}
.gtku-title-section {
  color: #fff;
  font-family: "ProximaNova ScOsf Condensed Bold", sans-serif;
  font-size: 70px;
  text-align: center;
  text-transform: capitalize;
  line-height: 70px;
  margin-bottom: 50px;
}
.gtku-content-section {
  display: flex;
  justify-content: center;
}
.gtku-content {
  width: 70%;
  background-color: #7ffd01d8;
  border-radius: 10px;
  padding: 40px;
}
.day-time-section {
  height: 100px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.day-time-section img {
  margin-right: 10px;
}
.day-time-text {
  font-family: "ProximaNova Alt Semibold", sans-serif;
  font-size: 18px;
}
.location-address-section {
  height: 100px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
.location-address-section img {
  margin-right: 10px;
}
.location-address-text {
  font-family: "ProximaNova Alt Semibold", sans-serif;
  font-size: 16px;
  line-height: 18px;
}
.location-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 10px;
}
.blank-black-section {
  background-color: #000;
  height: 80px;
}

/* Contact Us Section */
.contact-us-section {
  background-color: #80fd01;
}
.contact-us-inner-section {
  width: 70%;
}
.contact-us-form {
  padding: 80px 10px;
}
.conatct-us-title {
  font-family: "ProximaNova ScOsf Condensed Bold", sans-serif;
  font-size: 80px;
  line-height: 80px;
  margin-bottom: 10px;
}
input.contact-us-input {
  height: 60px;
  margin-bottom: 15px;
  border: none;
  background-color: #0000003d;
}
input.contact-us-input::placeholder {
  color: #fff;
}
.contact-us-submit-btn {
  height: 60px;
  border: none;
  border-radius: 10px;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 20px;
  font-family: "ProximaNova Bold", sans-serif;
}
.contact-us-submit-btn:hover {
  background-color: #2c2c2c;
  color: #fff;
}
.contact-us-image {
  margin-top: 50px;
}
.contact-us-image img {
  height: 500px;
  width: auto;
  display: block;
  margin: auto;
}

/* SEO Section */
.seo-section {
  padding: 80px 10px;
  background-color: #000000;
}
.seo-section-title {
  color: #ffffff;
  font-size: 65px;
  font-family: "ProximaNova ScOsf Condensed Bold", sans-serif;
}
.seo-section-body p {
  text-align: justify;
  font-size: 17px;
  color: #ffffff;
  font-family: "ProximaNova Regular", sans-serif;
}
.seo-link {
  color: rgb(255, 255, 255);
}

/* Footer Section */
.footer-section {
  background-color: #80fd01;
  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;
}
.copyright-section {
  text-align: center;
  padding: 10px 0;
  color: #fff;
  background-color: #000000;
}
