body {
  font-family: 'Poppins', sans-serif;
}
.navbar.navbar-expand-lg.navbar-dark.position-relative.z-3 {
	/* filter: blur(5px); */
	backdrop-filter: blur(5px);
}

.navbar-brand.fw-bold img {
	width: 150px;
}

.navbar .btn {
	background: #c27833;
	border: none;
}

.hero-section .badge.rounded-pill.bg-warning {
	background: #c2783329 !important;
	/* border: 1px solid red !important; */
	padding: 13px 34px !important;
	font-size: 15px !important;
	color: #c27833 !important;
	border: 1px solid #c27833;
	font-family: "Lato", sans-serif;
}

.section-cntnt-inr .hero-text {
	font-size: 17px;
	font-family: "Lato", sans-serif;
}

.d-flex.gap-3.mt-4 .btn.btn-warning {
	background: #c87d32;
	border: none;
	padding: 15px 30px 15px 30px !important;
	line-height: 15px;
	font-family: "Lato", sans-serif;
}
.d-flex.gap-3.mt-4 .btn.btn-outline-light{
	background: #ffffff2e;
	padding: 15px 30px 15px 30px !important;
	line-height: 15px;
	font-family: "Lato", sans-serif;
}
/* HERO SECTION */
.hero-section {
	position: relative;
	min-height: 100vh;
	background: url("../img/banner.png") center/cover no-repeat;
	color: #fff;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.35)
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-title span {
  color: #e09a4f;
}

.hero-text {
  font-size: 1rem;
  max-width: 480px;
  margin-top: 15px;
  opacity: 0.9;
}

/* NAVBAR */
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
}

.nav-link {
  color: #fff !important;
  font-weight: 400;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
/*********************/

/* ABOUT US SECTION */
.about-us-section {
	background: #ffffff;
	font-family: 'Poppins', sans-serif;
	text-align: center;
}

/* IMAGE */
.about-image-wrapper {
  position: relative;
  background: #f3e8dd;
  padding: 20px;
  border-radius: 20px;
}


.about-main-image {
	border-radius: 16px;
	height: 480px;
	object-fit: cover;
	width: 100%;
}

/* RATING CARD */
.rating-card {
	position: absolute;
	bottom: -22px;
	/* left: 0px; */
	background: #fff;
	padding: 16px 20px;
	border-radius: 14px;
	max-width: 344px;
	font-size: 14px;
	right: -20px;
}

.rating-icon {
  background: #f2a04a;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* TEXT */
.about-label {
  color: #e09a4f;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  margin: 12px 0 20px;
}

.about-title span {
  color: #e09a4f;
}

.about-us-section p {
	color: #444;
	font-size: 15px;
	line-height: 1.7;
	font-family: "Lato", sans-serif;
	text-align: left;
}

/* STATS */
.about-stats h4 {
  font-size: 28px;
  font-weight: 700;
  color: #e09a4f;
  margin-bottom: 4px;
}

.about-stats span {
  font-size: 12px;
  letter-spacing: 1px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
  }

  .rating-card {
    position: static;
    margin-top: 20px;
  }
}
/* WHAT WE OFFER SECTION */
.what-we-offer {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #e09a4f;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
}

.section-title span {
  color: #e09a4f;
}

/* CARD */
.offer-card {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  padding: 30px 26px;
  transition: all 0.3s ease;
}

.offer-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

/* ICON */
.offer-icon {
  width: 54px;
  height: 54px;
  background: #fdf1e6;
  color: #e09a4f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

/* TEXT */
.offer-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.offer-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}
/* OUR POPULAR DISHES */
.our-popular-dishes {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #e09a4f;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
}

.section-title span {
  color: #e09a4f;
}

/* CARD */
.dish-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.dish-image {
  position: relative;
}

.dish-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* PRICE */
.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #e09a4f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* CONTENT */
.dish-content {
  padding: 22px;
}

.dish-content h5 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.dish-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .dish-image img {
    height: 200px;
  }
}

/* GALLERY SECTION */
.gallery-section {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* IMAGE CARD */
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* BUTTON */
.gallery-btn {
  color: #e09a4f;
  border: 2px solid #e09a4f;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  background: transparent;
  transition: all 0.3s ease;
}

.gallery-btn:hover {
  background: #e09a4f;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .gallery-item img {
    height: 220px;
  }
}


/* GET IN TOUCH SECTION */
.get-in-touch {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #e09a4f;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
}

.section-title span {
  color: #e09a4f;
}

.section-desc {
  max-width: 620px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-top: 12px;
}

/* BUTTONS */
.btn-primary-custom {
  background: #c77b30;
  color: #fff;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 500;
  border: none;
}

.btn-primary-custom:hover {
  background: #b46d28;
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid #c77b30;
  color: #c77b30;
  padding: 14px 34px;
  border-radius: 40px;
  font-weight: 500;
  background: transparent;
}

.btn-outline-custom:hover {
  background: #c77b30;
  color: #fff;
}

/* CONTACT CARDS */
.contact-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: #fdf1e6;
  color: #e09a4f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}

.contact-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}


.footer {
  background: linear-gradient(180deg, #0b1423 0%, #0e1b2f 100%);
  padding: 70px 20px 40px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 28px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 26px;
}

.footer-nav a {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #cfd6e3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #d98a3f;
}

.footer-divider {
  width: 90px;
  height: 1px;
  background: rgba(217, 138, 63, 0.4);
  margin: 0 auto 18px;
}

.footer-copy {
	color: #fff;
	font-size: 17px;
	font-family: "Lato", sans-serif;
}

.contact-card a {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	text-decoration:none;
}


.footer-website {
	background: #c27833;
	width: 40%;
	margin: 0px auto;
	padding: 12px;
	font-size: 17px;
	border-radius: 30px;
	color: #fff;
	margin-top: 22px;
	font-family: "Lato", sans-serif;
}


@media only screen and (min-width:320px) and (max-width:767px){
    
    html, body {
  overflow-x: hidden;
}

/* GLOBAL */
* {
  box-sizing: border-box;
}
    
    
   .footer-nav {
	gap: 10px;
	margin-bottom: 20px;
}
    
    .footer-inner {
	margin-bottom: 58px;
}
    
    .footer-nav {
	position: fixed;
	bottom: 0px;
	background: #c27833;
	left: 0px;
	padding: 0px;
	margin-bottom: 0px !important;
	margin-top: ;
	width: 100%;
	z-index: 99999;
	right: 0px;
	padding-top: 12px;
	padding-bottom: 12px;
}
    .footer-nav a {
	font-size: 12px !important;
}
    
    .img-container {
	height: auto !important;
}
    
   .footer-website {
	padding: 10px;
	font-size: 15px;
	width: 100% !important;
}
    
    .footer-copy {
	font-size: 15px;
}


.row.mt-4.text-center.text-lg-start.about-stats {
	width: 100% !important;
}



   .hero-section .badge.rounded-pill.bg-warning {
	padding: 11px 11px !important;
	font-size: 12px !important;
}
.section-cntnt-inr .hero-text {
	font-size: 15px;
}
.btn {
	font-size: 13px !important;
	padding: 14px 20px !important;
}
.container.hero-content.position-relative.z-3.section-cntnt-inr .btn {
	padding: 14px 20px !important;
	font-size: 13px;
}
.about-title {
	font-size: 28px;
}
.section-title {
	font-size: 28px;
}
.footer-nav {
	gap: 18px;
	margin-bottom: 20px;
}
.navbar-toggler.collapsed {
	border: 1px solid #fff;
}
.navbar-nav.align-items-lg-center.gap-lg-4 {
	padding: 10px;
	background: #2b2b2b54;
}
}

/* Carousel heading */
.heading {
  display: block;
  text-align: center;
}

/* Container for the entire carousel */
.multi-carousel-container {
  cursor: grab;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

/* Cursor styles for dragging */
.multi-carousel-container.dragging,
#multiCarousel.dragging {
  cursor: grabbing;
}

/* Wrapper for all slides */
.multi-carousel-inner {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Individual slide */
.multi-carousel-item,
.clone {
  box-sizing: border-box;
  flex: 0 0 33.333333%;
  padding: 0 5px;
  position: relative; /* Essential for item-number positioning */
}

/* Control buttons */
.multi-carousel-control-prev,
.multi-carousel-control-next {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
  width: 40px;
  z-index: 10;
}

.multi-carousel-control-prev:hover,
.multi-carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.multi-carousel-control-prev {
  left: 10px;
}

.multi-carousel-control-next {
  right: 10px;
}

/* Image container with dynamic height */
.img-container {
  border-radius: 1.5rem;
  position: relative;
}

/* Image styling */
.img-container img,
#carouselInner img {
  height: 100%;
  object-fit: cover;
  object-position: top;
  pointer-events: none;
  user-drag: none;
  width: 100%;
  -webkit-user-drag: none;
  transition: transform 0.3s ease;
}

.img-container:hover img {
  transform: translateZ(0) scale(1.02);
}

/* Item number styling - guaranteed visibility */


/* Carousel cursor styling */
#multiCarousel {
  cursor: grab;
  touch-action: pan-y;
}

/* Disable text selection during drag */
#multiCarousel.dragging {
  user-select: none;
  -webkit-user-select: none;
}

/* Responsive adjustments for screens smaller than 720px (45em) */
@media (max-width: 45em) {
  .multi-carousel-item,
  .clone {
    flex: 0 0 100%;
  }
}

.row.mt-4.text-center.text-lg-start.about-stats .col-4 {
	/* border: 1px solid; */
	float: left;
	text-align: center;
}

.row.mt-4.text-center.text-lg-start.about-stats {
	margin: 10px auto;
	display: block;
	width: 50%;
}

