@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Pacifico&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');
:root {
  --primary-color: #3a3a3a;
  --secondary-color: #997044;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Karla", sans-serif;
}
.pt {
  padding-top: 100px;
}
.pb {
  padding-bottom: 100px;
}
.mb {
  margin-bottom: 100px;
}
.mb-50 {
  margin-bottom: 50px;
}

/* navbar */
.navbar-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
}
.nav-logo img {
  width: 100px;
  margin-left: 50px;
}
.hamburger {
  font-size: 28px;
  color: white;
  background: var(--secondary-color);
  padding: 5px 10px;
  position: fixed;
  right: 2%;
  top: 1%;
  display: none;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}
.mobile-sidebar {
  display: none;
}
.nav-items {
  list-style: none;
  display: flex;
  gap: 60px;
  color: white;
  font-size: 22px;
  font-weight: 400;
  margin-right: 100px;
  align-items: center;
  margin-top: 10px;
}
.nav-item:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}
.nav-item-active {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.nav-items a {
  text-decoration: none;
  color: white;
}
.number {
  background: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 25px;
}
.number:hover {
  background: var(--primary-color);
  text-decoration: none;
}
.header-container {
  position: relative;
}
.swiper {
  width: 100%;
}
.hero-swiper {
  position: relative;
  padding: 380px 20px 380px;
  text-align: left;
  overflow: hidden;
}
.slide-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: zoomIn 3s ease-in-out forwards;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.hero {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}
.hero h1 {
  font-size: 60px;
  font-family: "Dancing Script", cursive;
  margin-bottom: 10px;
}
.hero p {
  font-size: 24px;
  margin-bottom: 30px;
}
.hero-buttons{
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* From Uiverse.io by Madflows */
.button {
  position: relative;
  overflow: hidden;
  height: 3rem;
  padding: 0 2rem;
  background: #997044;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50px;
}

.button:hover::before {
  transform: scaleX(1);
}

.button-content {
  position: relative;
  z-index: 1;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  width: 100%;
  height: inherit;
  background: #3a3a3a;
  transition: all 1s;
}

.button-second {
  position: relative;
  overflow: hidden;
  height: 3rem;
  padding: 0 2rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 50px;
}

.button-second:hover::before {
  transform: scaleX(1);
}

.button-second-content {
  position: relative;
  z-index: 1;
}

.button-second::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  width: 100%;
  height: inherit;
  background: var(--secondary-color);
  transition: all 1s;
}

/* About */
.about {
  text-align: center;
  width: 80%;
  margin-left: 10%;
}
.about h5 {
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.about h1 {
  color: var(--primary-color);
  font-family: "Dancing Script", cursive;
  font-size: 58px;
}

/* menu */
.menu-wrapper {
  position: relative;
}
.menu-bg-image1 {
  position: absolute;
  top: 100px;
  left: 10px;
  z-index: 0;
}
.menu-bg-image1 img {
  width: 200px;
}
.menu-bg-image2 {
  position: absolute;
  bottom: 100px;
  right: 10px;
  z-index: 0;
}
.menu-bg-image2 img {
  width: 100px;
}
.menu {
  text-align: center;
  position: relative;
  z-index: 1;
}
.menu img {
  width: 100%;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  height: 550px;
  object-fit: cover;
}
.menu h5 {
  color: var(--secondary-color);
  margin-bottom: 30px;
}
.menu h1 {
  color: var(--primary-color);
  font-family: "Dancing Script", cursive;
}
.menu h4 {
  color: var(--primary-color);
  margin-top: 10px;
  font-family: "Pacifico", cursive;
}
.menu .button {
  margin-top: 30px;
}

/* Book Now */
.book-now-wrapper {
  position: relative;
}
.book-now-img {
  position: relative;
  padding: 200px 0 200px;
}
.book-table-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.book-now {
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 100px;
  padding-right: 100px;
  border-radius: 50px;
}
.book-now h1 {
  color: var(--primary-color);
  font-family: "Dancing Script", cursive;
}
.book-now p {
  color: var(--primary-color);
}
.booking-form input,
.booking-form select {
  padding: 10px 15px;
  border: 1px solid #ccc;
  font-size: 12px;
  width: 100%;
  border-radius: 25px;
}
.booking-form .button {
  margin-top: 30px;
}

/* Fire */
.fire-wrapper {
  position: relative;
}
.fire-vdo {
  position: relative;
  padding: 350px 20px 350px;
  text-align: left;
  overflow: hidden;
}
.fire-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.fire-overlay {
  position: absolute;
  top: 0;
  right: 25%;
  width: 350px;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.fire-content {
  position: absolute;
  top: 10%;
  right: 26%;
  width: 300px;
  color: white;
  z-index: 2;
}
.fire-content h1 {
  font-size: 52px;
  font-family: "Dancing Script", cursive;
}

/* Welcome */
.welcome-wrapper {
  position: relative;
}
.welcome-bg-image1 {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.welcome-bg-image1 img {
  width: 100px;
}
.welcome img {
  width: 100%;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}
.welcome-middle {
  text-align: center;
}
.welcome-left {
  margin-right: 15px;
}
.welcome-middle {
  margin-left: 15px;
  margin-right: 15px;
  z-index: 2;
  color: white;
}
.welcome-right {
  margin-left: 15px;
}
.welcome-middle h5 {
  color: var(--secondary-color);
}
.welcome-middle h1 {
  color: var(--primary-color);
  font-family: "Dancing Script", cursive;
}
.welcome-middle p {
  margin-bottom: 30px;
  color: var(--primary-color);
}
.welcome-middle h5 span {
  font-family: "Pacifico", cursive;
}
.welcome-middle p span {
  font-family: "Pacifico", cursive;
}

/* Images */
.images h1 {
  color: var(--primary-color);
  text-align: center;
  font-family: "Dancing Script", cursive;
}
.images h5 {
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 30px;
}
.images .swiper-slide {
  position: relative;
  overflow: hidden;
  height: 500px;
}
.images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
  display: block;
}
.images img:hover {
  transform: scale(1.1);
}
.swiper-pagination-bullet {
  background-color: gray;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #ff6600 !important;
}

/* Reviews */
.reviews-left {
  margin-right: 15px;
}
.reviews-right {
  margin-left: 15px;
}
.reviews-left img {
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}
.reviews-right h1 {
  color: var(--primary-color);
  font-family: "Dancing Script", cursive;
  margin-bottom: 30px;
  text-align: center;
}
.reviews-right .swiper-slide {
  background: #ededed;
  padding: 30px;
  border-radius: 100px;
  text-align: center;
  margin-bottom: 80px;
}
.reviews-right h5 {
  color: var(--secondary-color);
  font-family: "Pacifico", cursive;
  margin-bottom: 20px;
}
.reviewSwiper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.swiper-button-next,
.swiper-button-prev {
  margin-top: 100px !important;
}
.swiper-button-prev {
  margin-left: 260px;
}
.swiper-button-next {
  margin-right: 260px;
}
/* Remove default background/image */
.swiper-button-prev,
.swiper-button-next {
  background-image: none !important;
  color: inherit; /* To avoid default white */
  width: auto;
  height: auto;
  top: auto;
}

/* Optional: Remove extra spacing from defaults */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none !important;
}
.swiper i {
  font-size: 24px;
  color: var(--secondary-color);
}
.swiper i:hover {
  color: var(--primary-color);
}

/* Footer */
.footer-wrapper {
  position: relative;
}
.footer-img {
  position: relative;
  padding: 210px 20px 210px;
  overflow: hidden;
}
.footer-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
.footer-contents {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  color: white;
  z-index: 2;
}
.footer img {
  width: 110px;
  height: 100px;
  margin-right: 20px;
  margin-top: -30px;
}
.footer p {
  margin-bottom: 5px;
}
.quick-links a {
  text-decoration: none;
  color: white;
}
.quick-links a:hover {
  color: var(--secondary-color);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.footer-icons {
  display: flex;
  gap: 20px;
  margin-left: 20px;
}
.footer-icons a {
  color: white;
}
.footer-icon {
  margin-top: 10px;
  font-size: 36px !important;
}
.footer-icon:hover {
  color: var(--secondary-color);
}

.features {
  text-align: center;
}
.features img {
  width: 70px;
  margin-bottom: 10px;
}
.features h5 {
  font-family: "Pacifico", cursive;
  font-size: 24px;
  color: var(--primary-color);
}

/* About */
/* About Breadcrumb */
.breadcrumb-wrapper {
  position: relative;
  padding: 70px 20px 70px;
  text-align: left;
  overflow: hidden;
}
.breadcrumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.breadcrumb-contents {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-left: 50px;
  margin-top: 90px;
}
.breadcrumb-contents h1 {
  color: white;
  font-family: "Dancing Script", cursive;
  font-size: 86px;
}
.breadcrumb-contents a {
  text-decoration: none;
  color: white;
  font-size: 24px;
}
.breadcrumb-contents a:hover {
  color: var(--secondary-color);
}
.breadcrumb-contents span {
  color: var(--secondary-color);
  font-size: 24px;
}

/* About About-Us */
.about-aboutus-wrapper {
  position: relative;
}
.about-aboutus {
  position: relative;
  z-index: 1;
}
.about-aboutus-left {
  text-align: right;
  position: relative;
}
.about-blackburger {
  position: absolute;
  left: 0;
  top: 10%;
  width: 300px !important;
  height: 350px !important;
  z-index: 1;
}
.about-aboutus {
  position: relative;
  z-index: 2;
}
.about-aboutus-left img {
  width: 100%;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  height: 450px;
  width: 420px;
  object-fit: cover;
}
.about-aboutus-left {
  margin-right: 15px;
}
.about-aboutus-right {
  margin-left: 15px;
}
.about-aboutus-right h5 {
  font-family: "Pacifico", cursive;
  color: var(--primary-color);
}
.about-aboutus-right h1 {
  color: var(--secondary-color);
  font-family: "Dancing Script", cursive;
  font-size: 42px;
  margin-bottom: 10px;
}
.about-aboutus-right p {
  margin-bottom: 30px;
}
.about-aboutus-right h4 {
  font-family: "Gloria Hallelujah", cursive;
  margin-bottom: 30px;
}
.fries {
  position: absolute;
  top: 10%;
  left: 0;
  width: 200px;
  z-index: 0;
}
.pizza {
  position: absolute;
  bottom: 10%;
  right: 0;
  width: 100px;
  z-index: 0;
}

/* About Features */
.about-features-img {
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  border-radius: 10px;
  margin-right: 20px;
  margin-left: 20px;
}
.about-features-img img {
  width: 90px;
  transition: 0.8s ease;
  padding: 10px;
}
.about-features-content h5 {
  color: var(--primary-color);
  font-family: "Pacifico", cursive;
}
.about-feature {
  display: flex;
}
.about-feature:hover .about-features-img img {
  transform: rotateY(180deg);
}
.about-features-content {
  margin-top: 5px;
}

/* About Standards */
.standards-wrapper {
  padding: 80px 0;
  position: relative;
  color: white;
  background-image: url("./images/about/standard-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.standards-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}
.standards {
  position: relative;
  z-index: 2;
}
.standards h5 {
  font-size: 24px;
  font-family: "Pacifico", cursive;
}
.standards h1 {
  font-size: 42px;
  font-weight: 600;
  color: white;
  margin-bottom: 10px;
  font-family: "Dancing Script", cursive;
  color: #ff9b2f;
}
/* Grid Styling */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
  position: relative;
}
.standard {
  max-width: 500px;
}
.standard h5 {
  font-family: "Dancing Script", cursive;
  color: #ff9b2f;
  font-size: 30px;
}
.standard.left {
  text-align: right;
  margin-left: 70px;
  margin-top: 20px;
}
.standard.right {
  text-align: left;
  padding-left: 30px;
  margin-top: 20px;
}
.standard h5 {
  font-weight: 700;
}
/* Center Line with Dots */
.vertical-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: white;
  transform: translateX(-50%);
}
.vertical-line::before,
.vertical-line::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--secondary-color);
  border-radius: 50%;
}
.vertical-line::before {
  top: 0;
}
.vertical-line::after {
  bottom: 0;
}

/* About Why choose us */
.about-why-choose-us-wrapper {
  position: relative;
}
.about-why-choose-us {
  position: relative;
  z-index: 1;
}
.about-why-choose-us-left {
  margin-right: 15px;
}
.about-why-choose-us-right {
  margin-left: 15px;
}
.about-why-choose-us-right img {
  width: 100%;
  object-fit: cover;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  height: 450px;
}
.about-why-choose-us-left h5 {
  color: var(--primary-color);
  font-family: "Pacifico", cursive;
}
.about-why-choose-us-left h1 {
  color: var(--secondary-color);
  font-family: "Dancing Script", cursive;
}
.about-why-choose-us-left img {
  width: 70px;
  height: 70px;
}
.about-why-choose-us-left-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ededed;
  height: 100%;
  padding: 20px;
  border-radius: 15px;
  transition: 1s ease-in-out;
}
.about-why-choose-us-left-inner:hover {
  background: var(--primary-color);
  color: white;
}
.cheers {
  position: absolute;
  top: 5%;
  right: 0;
  width: 100px;
  z-index: 0;
}
.spices {
  position: absolute;
  bottom: 0;
  left: 40%;
  width: 300px;
  z-index: 0;
}
.leaf {
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  z-index: 0;
}

/* About Delivery */
.delivery img {
  width: 200px;
}
.delivery-wrapper {
  padding: 100px 0;
  position: relative;
  color: white;
  background-image: url("./images/about/about-delivery.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.delivery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.delivery {
  position: relative;
  z-index: 2;
}
.delivery h1 {
  font-family: "Dancing Script", cursive;
}
.image-scroller {
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  height: 100px;
  z-index: 2;
}
.image-scroller img {
  position: absolute;
  right: -100%; /* start from the right */
  animation: scroll-left 10s linear infinite;
  height: 100%;
}
/* Animation */
@keyframes scroll-left {
  from {
    right: 0;
  }
  to {
    right: 100%;
  }
}

/* About Newsletter */
.newsletter-wrapper {
  position: relative;
}
.newsletter {
  text-align: center;
  position: relative;
  z-index: 2;
}
.newsletter-left {
  margin-right: 15px;
}
.newsletter-mid {
  margin-left: 15px;
  margin-right: 15px;
}
.newsletter-right {
  margin-left: 15px;
}
.newsletter h1 {
  color: var(--secondary-color);
  font-family: "Dancing Script", cursive;
}
.newsletter h5 {
  color: var(--primary-color);
  font-family: "Pacifico", cursive;
}
.newsletter-mid input {
  height: 50px;
  border-radius: 50px;
}
.newsletter img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}
.pizza1 {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 200px;
}
.pizza2 {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100px;
}
.red-chilli {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 40%;
  width: 200px;
}


/* Menu */
.popular-dishes-wrapper {
  position: relative;
}
.popular-dishes {
  text-align: center;
  position: relative;
  z-index: 2;
}
.popular-dishes h5 {
  color: var(--primary-color);
  font-family: "Pacifico", cursive;
}
.popular-dishes h1 {
  color: var(--secondary-color);
  font-family: "Dancing Script", cursive;
  margin-bottom: 20px;
}
.itemheader .swiper-wrapper {
  display: flex;
  gap: 12px;
}
.itemheader .swiper-slide {
  flex-shrink: 0;
  width: auto;
  border-radius: 6px;
  overflow: hidden;
}
.itemheader {
  margin-bottom: 50px;
  width: 800px;
}
.itemheader .swiper-slide {
  width: 100px !important;
  transition: 0.3s ease;
  margin-left: 20px !important;
  margin-right: 30px !important;
  overflow: visible !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  padding-top: 20px;
}
.itemheader .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}
.itemheader .swiper-slide-thumb-active img {
  transform: scale(1.4);
  z-index: 2;
}
.itemheader .swiper-slide h6 {
  margin-top: 10px;
  font-family: "Pacifico", cursive;
  z-index: 2;
}
.popular-dish-items img {
  width: 150px;
}
.popular-dish-item-details {
  display: flex;
  gap: 10px;
  align-items: center;
  text-align: left;
}
.popular-dish-item-details-contents h4 {
  color: var(--secondary-color);
}
.top-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
}
.capsicum {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100px;
}
.oregano {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  z-index: 1;
}

/* Menu Breakfast */
.breakfast-wrapper {
  background: var(--primary-color);
  color: white;
  position: relative;
}
.breakfast {
  position: relative;
  z-index: 2;
}
.tomato {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 200px;
}
.fried-egg {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 40%;
  width: 100px;
}
.sandwich {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 5%;
  width: 200px;
}
.breakfast img {
  width: 100%;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  object-fit: cover;
  height: 500px;
}
.breakfast-left {
  margin-right: 15px;
}
.breakfast-right {
  margin-left: 15px;
}
.breakfast-right h5 {
  font-family: "Pacifico", cursive;
}
.breakfast-right h1 {
  color: var(--secondary-color);
  font-family: "Dancing Script", cursive;
  margin-bottom: 30px;
}
.breakfast-right h6 {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--secondary-color);
}
.breakfast-right span {
  color: var(--secondary-color);
}
.menu-left {
  margin-right: 50px;
}
.menu-right {
  margin-left: 50px;
}

/* Menu Lunch */
.lunch-wrapper {
  position: relative;
}
.lunch {
  position: relative;
  z-index: 2;
}
.burger-bg {
  position: absolute;
  z-index: 1;
  top: 10%;
  right: 8%;
  width: 100px;
}
.menu-spices {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 5%;
  width: 300px;
}
.corriander {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 25%;
  width: 300px;
}
.lunch img {
  width: 100%;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  object-fit: cover;
  height: 500px;
}
.lunch-left {
  margin-right: 15px;
}
.lunch-right {
  margin-left: 15px;
}
.lunch-left h5 {
  color: var(--primary-color);
  font-family: "Pacifico", cursive;
}
.lunch-left h1 {
  color: var(--secondary-color);
  font-family: "Dancing Script", cursive;
  margin-bottom: 30px;
}
.lunch-left h6 {
  text-decoration: underline;
  color: var(--primary-color);
}
.lunch-left span {
  color: var(--secondary-color);
}

/* Menu Dinner */
.dinner-wrapper {
  background: var(--primary-color);
  color: white;
  position: relative;
}
.dinner {
  position: relative;
  z-index: 2;
}
.tomato-bg {
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 10%;
  width: 50px;
}
.eat {
  position: absolute;
  z-index: 1;
  top: -10%;
  right: 0;
  width: 200px;
}
.corn {
  position: absolute;
  z-index: 1;
  right: 35%;
  bottom: 0;
  width: 200px;
}
.dinner img {
  width: 100%;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  object-fit: cover;
  height: 500px;
}
.dinner-left {
  margin-right: 15px;
}
.dinner-right {
  margin-left: 15px;
}
.dinner-right h5 {
  font-family: "Pacifico", cursive;
}
.dinner-right h1 {
  color: var(--secondary-color);
  font-family: "Dancing Script", cursive;
  margin-bottom: 30px;
}
.dinner-right h6 {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--secondary-color);
}
.dinner-right span {
  color: var(--secondary-color);
}

/* Menu Features */
.menu-features-wrapper {
  position: relative;
}
.menu-features {
  position: relative;
  z-index: 2;
}
.spiral-leaves {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 200px;
}
.steak {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 200px;
}
.hanger {
  position: absolute;
  top: -105px;
  left: 50%;
  transform: translateX(-50%);
  height: 112px;
  width: 2px;
  background-color: var(--primary-color);
}

.hanger::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background-color: white;
  border: 4px solid var(--primary-color);
  border-radius: 50%;
}

.menu-features-short {
  text-align: center;
  background: #ededed;
  padding: 20px;
  border-radius: 25px;
  position: relative;
  border: 1px solid var(--primary-color);
  height: 250px;
  width: 300px;
}
.menu-features-long {
  text-align: center;
  background: #ebe9e6;
  padding: 20px;
  border-radius: 25px;
  position: relative;
  border: 1px solid var(--primary-color);
  height: 300px;
  width: 300px;
}
.menu-features-short img {
  width: 100px;
}
.menu-features-long img {
  width: 100px;
}
.menu-features-short h2 {
  color: var(--secondary-color);
  font-family: "Dancing Script", cursive;
}
.menu-features-long h2 {
  color: var(--secondary-color);
  font-family: "Dancing Script", cursive;
}

/* Contact get-in-touch */
.get-in-touch-wrapper {
  position: relative;
}
.get-in-touch {
  position: relative;
  z-index: 2;
}
.hanging-phone {
  position: absolute;
  top: 0;
  left: 5%;
  width: 150px;
}
.get-in-touch h1 {
  color: var(--secondary-color);
  text-align: center;
  font-family: "Dancing Script", cursive;
}
.get-in-touch p {
  text-align: center;
  color: var(--primary-color);
}
.get-in-touch-inner img {
  width: 50px;
  margin-bottom: 20px;
}
.get-in-touch-inner {
  background: #ede9e6;
  text-align: center;
  padding: 20px;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  margin-top: 20px;
  width: 200px;
  margin-left: 50px;
}
.get-in-touch-inner p {
  color: var(--primary-color);
  margin-bottom: 0;
}
.get-in-touch-inner h5 {
  color: var(--secondary-color);
  font-family: "Pacifico", cursive;
}

/* Contact Reach-Us */
.lets-connect-wrapper {
  background: var(--primary-color);
  position: relative;
}
.lets-connect-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lets-connect-left {
  margin-right: 15px;
}
.lets-connect-right {
  margin-left: 15px;
}
.lets-connect-right img {
  width: 100%;
  object-fit: cover;
  height: 400px;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}
.lets-connect {
  position: relative;
  left: 10%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  padding: 100px;
  width: 1000px;
}
.lets-connect-left h1 {
  font-family: "Dancing Script", cursive;
}
.contact-form input {
  padding: 10px;
  margin-bottom: 20px;
}
.contact-form textarea {
  padding: 10px;
  margin-bottom: 20px;
}

.contact-map {
  display: flex;
}

.scroll-wrapper {
  padding: 30px;
  color: var(--secondary-color);
  overflow: hidden;
}
.scroll-text {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  font-size: 40px;
  font-weight: 600;
}
.scroll-text span {
  padding-right: 50px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.outline-text {
  font-family: "Anton", cursive;
  font-size: 50px;
  color: var(--secondary-color);
}
.scroll-container {
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
}
.scroll-img img {
  width: 100px;
  margin-top: -10px;
}
.rotate-image {
  animation: rotate 30s linear infinite;
  display: inline-block;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Gallery */
.gallery-dishes-wrapper {
  position: relative;
}
.gallery-dishes {
  text-align: center;
  position: relative;
  z-index: 2;
}
.spiral-leaf {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 600px;
}
.gallery-pizza {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 200px;
}
.gallery-fries {
  position: absolute;
  z-index: 1;
  top: 30%;
  right: 0;
  width: 300px;
}
.bottom-left {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 400px;
}
.vegetables {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 10%;
  width: 200px;
}
.gallery-dishes h5 {
  color: var(--primary-color);
  font-family: "Pacifico", cursive;
}
.gallery-dishes h1 {
  color: var(--secondary-color);
  font-family: "Dancing Script", cursive;
  margin-bottom: 40px;
  font-size: 62px;
}
.galleryheader .swiper-wrapper {
  display: flex;
  gap: 12px;
}
.galleryheader .swiper-slide {
  flex-shrink: 0;
  width: auto;
  border-radius: 6px;
  overflow: hidden;
}
.galleryheader {
  margin-bottom: 50px;
  width: 900px;
}
.galleryheader .swiper-slide {
  width: 120px !important;
  transition: 0.3s ease;
  margin-left: 20px !important;
  margin-right: 30px !important;
  overflow: visible !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: #ededed;
}
.galleryheader .swiper-slide-thumb-active {
  background: var(--secondary-color);
  color: white;
  z-index: 2;
}
.galleryheader .swiper-slide-thumb-active i {
  color: white;
}
.galleryheader .swiper-slide h6 {
  margin-top: 10px;
  font-family: "Pacifico", cursive;
  z-index: 2;
}

.gallery-item {
  margin-bottom: 40px;
}
.gallery-specific {
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}
.gallery-items img {
  width: 100%;
  object-fit: cover;
  height: 350px;
  border-radius: 50px;
  transition: 1s ease-in-out;
}
.gallery-items img:hover {
  transform: scale(1.2);
}

.gallery-item {
  display: none; /* hide all initially */
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.footer p {
    font-size: 18px;
  }
 

@media (width<1300px) {
  /* Home */
  .nav-items {
    gap: 40px;
    margin-right: 10px;
  }
  .menu img {
    height: 400px;
  }
  .swiper-button-prev {
    margin-left: 200px;
  }
  .swiper-button-next {
    margin-right: 200px;
  }

  /* Footer */
  .footer-bottom {
    margin-top: 50px;
  }
  .footer-icons {
    margin-left: 20px;
  }

  /* About */
  .about-aboutus-left img {
    width: 400px;
  }

  /* Contact */
  .get-in-touch-inner {
    margin-left: 30px;
  }
  .lets-connect {
    left: 5%;
  }

  .leaf {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    z-index: 0;
  }
  .top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
  }
  .oregano {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    z-index: 1;
  }
  .corn {
    position: absolute;
    z-index: 1;
    right: 35%;
    bottom: 0;
    width: 150px;
  }
  .spiral-leaf {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 400px;
  }
}

@media (width<1200px) {
  /* Home */
  .nav-items {
    gap: 40px;
    margin-right: 0;
  }
  .nav-logo img {
    margin-left: 0;
  }
  .hero {
    width: 1000px;
  }
  .hero-swiper {
    position: relative;
    padding: 320px 20px 320px;
    text-align: left;
    overflow: hidden;
  }
  .menu img {
    height: 350px;
  }
  .book-now {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Footer */
  .footer p {
    font-size: 14px;
  }
  .footer-icons p {
    font-size: 32px;
  }

  /* About */
  .about-aboutus-left img {
    width: 330px;
  }
  .about-feature{
    display: flex;
    align-items: center;
  }
  .about-features-img {
    margin-right: 10px;
    margin-left: 10px;
  }
  .about-features-content {
    margin-top: 10px;
  }
  .about-why-choose-us-right img {
    height: 500px;
  }

  /* Menu */
  .menu-features-short {
    width: 250px;
    height: 270px;
  }
  .menu-features-long {
    width: 250px;
    height: 330px;
  }

  /* Contact */
  .get-in-touch-inner {
    margin-left: 10px;
  }
  .lets-connect {
    left: 2%;
    width: 900px;
  }

  .leaf {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    z-index: 0;
  }
  .welcome-bg-image1 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .welcome-bg-image1 img {
    width: 80px;
  }

   .swiper-button-prev {
    margin-left: 160px;
  }
  .swiper-button-next {
    margin-right: 160px;
  }
}

@media (width<992px) {
  .nav-items {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero p {
    font-size: 20px;
  }
  .hero {
    width: 600px;
  }
  .hero-swiper {
    position: relative;
    padding: 250px 20px 250px;
    text-align: left;
    overflow: hidden;
  }
  .menu img {
    height: 250px;
  }
  .book-now {
    width: 600px;
  }
  .welcome img {
    height: 250px;
    object-fit: cover;
  }
  .reviews-left img {
    height: 450px;
  }
  .swiper-button-prev {
    margin-left: 100px;
  }
  .swiper-button-next {
    margin-right: 100px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    margin-top: 150px !important;
  }

  .footer-img {
    position: relative;
    padding: 280px 20px 280px;
    overflow: hidden;
  }
  .footer-icons {
    margin-bottom: 30px;
  }
  .footer-contents {
    top: 50px;
  }
  .footer p {
    font-size: 16px;
  }
  .footer-icons p {
    font-size: 24px;
  }
  .footer-content img {
    margin-top: 10px;
  }

  /* About */
  .about-blackburger {
    display: none;
  }
  .about-feature {
    text-align: center;
  }
  .about-feature{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-features-img {
    margin-bottom: 10px;
  }
  .about-features-img {
    margin-right: 0;
    margin-left: 0;
  }
  .about-why-choose-us-left {
    margin-bottom: 30px;
  }
  .standard.left {
    text-align: right;
    margin-left: 30px;
    margin-top: 20px;
  }
  .standard.right {
    text-align: left;
    padding-left: 10px;
    margin-top: 20px;
  }

  /* Menu */
  .itemheader {
    margin-bottom: 50px;
    width: 600px;
  }
  .breakfast-left img {
    height: 800px;
  }
  .lunch-right img {
    height: 800px;
  }
  .dinner-left img {
    height: 800px;
  }

  .menu-features-long {
    width: 180px;
    height: 390px;
    margin-top: 280px;
  }
  .menu-features-long .hanger {
    top: -385px;
    height: 390px;
  }

  /* Contact */
  .get-in-touch-inner {
    width: 300px;
    margin-left: 0;
  }
  .mb-20 {
    margin-bottom: 20px;
  }
  .lets-connect {
    width: 700px;
    padding: 40px;
    left: 0;
  }
  .lets-connect-right img {
    width: 100%;
  }

  /* Gallery */
  .galleryheader {
    width: 700px;
  }

  .welcome-bg-image1 {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .welcome-bg-image1 img {
    width: 80px;
  }
  .leaf {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    z-index: 0;
  }
  .tomato {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 100px;
  }
  .eat {
    position: absolute;
    z-index: 1;
    top: 10%;
    right: 0;
    width: 100px;
  }
  .corn {
    position: absolute;
    z-index: 1;
    right: 35%;
    bottom: 0;
    width: 100px;
  }
  .spiral-leaf {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 300px;
  }
  .vegetables {
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 10%;
    width: 100px;
  }
  .hanging-phone {
    position: absolute;
    top: 0;
    left: -5%;
    width: 150px;
  }

  /* Mobile Sidebar */
  .mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--primary-color);
    color: white;
    z-index: 9999;
    transition: right 0.6s ease;
    padding: 20px;
    overflow-y: auto;
    display: block;
  }
  .mobile-sidebar.show {
    right: 0;
  }
  .metismenu .number {
    background: var(--secondary-color);
    padding: 5px 25px;
    border-radius: 25px;
    width: fit-content;
  }
  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }
  .mobile-sidebar a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 0;
  }
  .metismenu ul {
    list-style: none;
    padding-left: 15px;
  }
  .metismenu li {
    list-style: none;
    font-size: 20px;
    padding-top: 20px;
  }
  .nav-active-mobile {
    text-decoration: underline !important;
    text-underline-offset: 5px;
  }

  .get-in-touch-inner {
    margin-left: 20px;
  }

  .footer p {
    font-size: 18px;
  }
  .footer-icon {
  font-size: 24px !important;
}
}

@media (width<768px) {
  .mb-30 {
    margin-bottom: 30px;
  }
  .breadcrumb-contents h1 {
    font-size: 56px;
  }
  .hero h1 {
    font-size: 26px;
  }
  .hero p {
    font-size: 14px;
  }
  .hero {
    width: 350px;
    left: 50%;
  }
  .hero-swiper {
    position: relative;
    padding: 350px 20px 350px;
    text-align: left;
    overflow: hidden;
  }

  .about {
    text-align: center;
    width: 100%;
    margin-left: 0;
  }
  .book-now {
    width: 100%;
    border-radius: 0;
    width: 300px;
  }
  .fire-overlay {
    right: 0;
  }
  .fire-content {
    right: 8%;
  }
  .swiper-button-next,
  .swiper-button-prev {
    margin-top: 100px !important;
  }
  .swiper-button-prev {
    margin-left: 130px;
  }
  .swiper-button-next {
    margin-right: 130px;
  }
  .reviews-left {
    margin-right: 0;
  }
  .reviews-right {
    margin-left: 0;
  }
  .welcome-left {
    margin-right: 0;
  }
  .welcome-middle {
    margin-left: 0;
    margin-right: 0;
  }
  .welcome-right {
    margin-left: 0;
  }
  .reviews-left img {
    height: 300px;
    margin-top: 40px;
  }

  /* About */
  .about-aboutus-left {
    margin-right: 0;
  }
  .about-aboutus-right {
    margin-left: 0;
  }
  .about-aboutus-left img {
    width: 100%;
    height: 350px;
  }
  .about-aboutus-right {
    text-align: center;
  }
  /* .about-features-img {
    margin-left: 150px !important;
  } */
  .standard.right {
    padding-left: 0;
  }
  .standard.left {
    margin-left: 0;
  }
  .about-why-choose-us-left {
    margin-right: 0;
  }
  .about-why-choose-us-right {
    margin-left: 0;
  }
  .about-why-choose-us-right img {
    height: 350px;
  }
  .spices {
    display: none;
  }
  .newsletter-left {
    margin-right: 0;
  }
  .newsletter-mid {
    margin-left: 0;
    margin-right: 0;
  }
  .newsletter-right {
    margin-left: 0;
  }

  /* Menu */
  .itemheader {
    margin-bottom: 50px;
    width: 400px;
  }
  .breakfast-left img {
    height: 800px;
  }
  .lunch-right img {
    height: 800px;
  }
  .dinner-left img {
    height: 800px;
  }

  .menu-features-long {
    width: 180px;
    height: 390px;
    margin-top: 280px;
  }
  .menu-features-long .hanger {
    top: -385px;
    height: 390px;
  }
  .oregano {
    display: none;
  }
  .mb-50 {
    margin-bottom: 30px;
  }
  .breakfast-left {
    margin-right: 0;
  }
  .breakfast-right {
    margin-left: 0;
  }
  .lunch-left {
    margin-right: 0;
  }
  .lunch-right {
    margin-left: 0;
  }
  .dinner-left {
    margin-right: 0;
  }
  .dinner-right {
    margin-left: 0;
  }
  .breakfast img {
    height: 300px;
  }
  .lunch img {
    height: 300px;
  }
  .dinner img {
    height: 300px;
  }
  .menu-left {
    margin-right: 0;
  }
  .menu-right {
    margin-left: 0;
  }
  .long-first .menu-features-long {
    width: 180px;
    height: 330px;
    margin-top: 50px;
    margin-left: 140px;
    width: 260px;
    z-index: 2;
  }
  .long-first .menu-features-long .hanger {
    top: -430px;
    height: 435px;
    z-index: 2;
  }
  .long-second .menu-features-long {
    width: 180px;
    height: 330px;
    margin-top: 50px;
    margin-left: 140px;
    width: 260px;
    z-index: 1;
  }
  .long-second .menu-features-long .hanger {
    top: -1530px;
    height: 1535px;
    z-index: 1;
    left: 70%;
  }
  .short-first .menu-features-short {
    z-index: 3;
  }
  .short-first .menu-features-short .hanger {
    z-index: 1;
  }
  .short-second .menu-features-short {
    height: 330px;
    margin-top: 50px;
    margin-left: 0;
    width: 200px;
  }
  .short-second .menu-features-short .hanger {
    top: -830px;
    height: 835px;
    z-index: 0;
  }

  /* Gallery */
  .galleryheader {
    width: 400px;
  }
  .spiral-leaf {
    display: none;
  }

  /* Contact */
  .get-in-touch-inner {
    width: 100%;
    margin-left: 0;
  }
  .lets-connect {
    width: 390px;
    padding: 40px;
    left: 1%;
  }
  .lets-connect-right img {
    display: none;
  }
  .scroll-text {
    animation: scroll 5s linear infinite;
    font-size: 30px;
    font-weight: 600;
  }

  .footer-img {
    position: relative;
    padding: 560px 20px 560px;
    overflow: hidden;
  }
  .footer-bottom {
    display: block;
    text-align: center;
  }
  .footer-bottom-left {
    margin-bottom: 10px;
  }
  .ml-20 {
    margin-left: 20px;
  }
  .pb {
    margin-bottom: -20px;
  }
  .welcome-bg-image1 img {
    display: none;
  }

  .fries {
    position: absolute;
    top: 5%;
    left: 0;
    width: 200px;
    z-index: 0;
  }
  .top-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
  }
  .menu-spices {
    position: absolute;
    z-index: 1;
    top: 70%;
    left: 5%;
    width: 100px;
  }
  .tomato-bg {
    position: absolute;
    z-index: 1;
    top: 5%;
    left: 10%;
    width: 50px;
  }
  .eat {
    position: absolute;
    z-index: 1;
    top: -5%;
    right: 0;
    width: 100px;
  }
  .corn {
    position: absolute;
    z-index: 1;
    right: 35%;
    bottom: 0;
    width: 100px;
  }
  .pb {
    margin-bottom: 0;
  }
  .bottom-left {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 200px;
  }
  .hanging-phone {
    position: absolute;
    top: 0;
    left: -5%;
    width: 100px;
  }
}

@media (width<400px) {
  .itemheader {
    width: 320px !important ;
  }
  .galleryheader {
    width: 340px !important ;
  }
  .menu-features-long {
    width: 200px !important;
  }
  .corriander {
    display: none;
  }
  .lets-connect {
    width: 340px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    margin-top: 120px !important;
  }
  .swiper-button-prev {
    margin-left: 120px;
  }
  .swiper-button-next {
    margin-right: 120px;
  }
  /* .about-features-img {
    margin-left: 120px !important;
  } */
}

@media (width<350px) {
  .hero {
    width: 300px;
    left: 50%;
  }
  .long-first .menu-features-long {
    width: 180px !important;
    height: 350px;
  }
  .long-second .menu-features-long {
    width: 180px !important;
    height: 370px;
  }
  .itemheader {
    width: 300px !important ;
  }
  .galleryheader {
    width: 300px !important ;
  }
  .lets-connect {
    width: 300px;
    left: 3%;
  }
  .swiper-button-next,
  .swiper-button-prev {
    margin-top: 140px !important;
  }
  /* .about-features-img {
    margin-left: 110px !important;
  } */
  .hero-buttons{
    display: block;
  }
  .button-second{
    margin-top: 20px;
  }
}

/* @media (width: 540px) {
  .about-features-img {
    margin-left: 200px !important;
  }
} */
@media(width<400px){
   .footer-img {
    padding: 590px 20px 570px;
  }
}
@media(width<350px){
   .footer-img {
    padding: 600px 20px 600px;
  }
}