/* =====================================================
   GOOGLE FONTS
===================================================== */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

/* =====================================================
   ROOT VARIABLES (Exact Theme Colors)
===================================================== */
:root {
  --maroon: #5b0d18;
  --maroon-dark: #430812;
  --gold: #d4af37;
  --cream: #f5f1e9;
  --cream-dark: #efe6d8;
  --text-dark: #1e1e1e;

  --text-light: #6b6b6b;

  --heading-font: "Playfair Display", serif;
  --body-font: "Poppins", sans-serif;
}

/* =====================================================
   GLOBAL
===================================================== */
body {
  margin: 0;
  font-family: var(--body-font);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
}

/* =====================================================
   NAVBAR
===================================================== */
.navbar {
  background: transparent !important;
  padding: 0px 0;
}

.navbar .navbar-brand {
  /* position: relative; */
}

.navbar .navbar-brand img {
  /* position: absolute;
  top: 5px;
  left: 50%;
  transform: translate(-50%, -50%); */
  width: 70px;
}

.navbar .nav-link {
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  margin-left: 20px;
  transition: 0.3s;
}

.navbar .nav-link:hover {
  color: var(--gold) !important;
}

.navbar .nav-link.active {
  color: var(--gold) !important;
}

.navbar .btn-call {
  background-color: var(--gold);
  color: #000;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 8px;
}

.navbar .btn-call:hover {
  background-color: #caa42e;
}

.custom-navbar.scrolled {
  background: var(--maroon) !important;
  /* semi-transparent dark */
  backdrop-filter: blur(8px);
  /* glass effect - nice on modern browsers */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Profile Icon */
.profile-icon i {
  color: #fff;
  transition: 0.3s;
}

.profile-icon:hover i {
  color: var(--gold);
}

/* Dropdown styling */
.profile-menu {
  border-radius: 12px;
  padding: 10px 0;
}

.profile-menu .dropdown-item {
  font-weight: 500;
  padding: 10px 18px;
}

.profile-menu .dropdown-item:hover {
  background: rgba(107, 15, 26, 0.08);
  color: #6b0f1a;
}

/* .custom-navbar.scrolled .nav-link {
  color: #222 !important;
}
.custom-navbar.scrolled .nav-link:hover,
.custom-navbar.scrolled .nav-link.active {
  color: var(--gold) !important;
} */
/* =====================================================
   HERO SECTION
===================================================== */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(rgba(91, 13, 24, 0.88), rgba(67, 8, 18, 0.95)),
    url("../images/banner/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 650px;
}

.hero-small {
  letter-spacing: 3px;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 15px;
  position: relative;
  padding-left: 60px;
}

.hero-small:before {
  position: absolute;
  content: " ";
  width: 50px;
  height: 1px;
  border: 1px solid var(--gold);
  top: 50%;
  left: 0px;
}

.hero-container {
  border-bottom: 0.1px solid var(--gold);
  padding-bottom: 20px;
}

.hero-title {
  font-size: 58px;
  line-height: 1.1;
}

.hero-title span {
  color: var(--gold);
  font-style: italic;
}

.hero-description {
  font-size: 18px;
  margin-top: 20px;
  color: #e5e5e5;
}

.hero-buttons {
  margin-top: 30px;
}

.btn-gold {
  background-color: var(--gold);
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  margin-right: 15px;
}

.btn-outline-light {
  border: 1px solid #fff;
  padding: 12px 28px;
  border-radius: 8px;
}

/* =====================================================
   LIGHT SECTION (Our Specialties)
===================================================== */
.section-light {
  background-color: var(--cream);
  padding: 70px 0;
  text-align: center;
}

.section-light h2 {
  font-size: 36px;
}

.section-subtitle {
  color: var(--text-light);
  margin-bottom: 50px;
}

.food-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

/* Bottom gradient layer */
.food-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  /* 👈 attach to bottom */
  width: 100%;
  height: 60%;
  /* 👈 control gradient height */

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0.6) 40%,
      rgba(0, 0, 0, 0) 100%);

  pointer-events: none;
}

/* Text block */
.food-card .sign__desc {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  text-align: left;
  padding: 15px;
  z-index: 2;
  /* 👈 above gradient */
}

.food-card .sign__desc h6 {
  font-size: 18px;
  margin-bottom: 5px;
}

.food-card .sign__desc p {
  font-size: 16px;
  margin-bottom: 5px;
}

.food-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* .food-card h6 {
  padding: 15px;
  font-size: 18px;
} */

.food-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* =====================================================
   DARK SECTION (Signature Dishes)
===================================================== */
.section-dark {
  background-color: var(--maroon);
  padding: 70px 0;
  color: #fff;
  text-align: center;
}

.section-dark h2 {
  font-size: 36px;
}

.dish-card {
  /* background-color: var(--maroon-dark); */
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  border: 1px solid #ffffff28;
}

/* Bottom overlay using your maroon colors */
.dish-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 65%;
  /* adjust strength */
  background: linear-gradient(to top,
      var(--maroon-dark) 0%,
      var(--maroon) 30%,
      transparent 100%);
  z-index: 1;
}

.dish-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.dish-card .dish-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 10;
}

.dishnae-price-div {
  display: flex;
  justify-content: space-between;
  color: var(--gold);
  font-weight: 500;
}

.dish-info {
  padding: 20px;
}

.dish-info h6 {
  font-size: 18px;
}

.dish-info p {
  text-align: left;
  margin-bottom: 5px;
  font-size: 16px;
  color: var(--text-light);
}

.dish-card:hover {
  transform: translateY(-6px);
}

/* =====================================================
   TESTIMONIAL SECTION
===================================================== */
.testimonial-section {
  background-color: var(--cream);
  padding: 70px 0;
  text-align: center;
}

.testimonial-card {
  background: #fff;
  padding: 20px;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-card .feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #6b6b6b14;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: auto;
  margin-bottom: 20px;
}

.testimonial-card .feature-title {
  color: var(--maroon);
}

.testimonial-card .feature-desc {
  font-size: 16px;
  color: var(--text-light);
}

/* =====================================================
   CTA SECTION
===================================================== */
.cta-section {
  background-color: var(--maroon-dark);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  border-bottom: 1px solid var(--gold);
}

.cta-section h2 span {
  color: var(--gold);
  font-style: italic;
}

.section-light .royal-icon i {
  font-size: 28px;
  color: #c8a96a;
  /* gold tone */
}

.section-light .royal-icon {
  position: relative;
  display: inline-block;
  /* padding-bottom: 10px; */
}

.section-light .royal-icon i {
  font-size: 15px;
  color: var(--maroon-dark);
  font-weight: 900;
}

.section-light .royal-icon::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 60px;
  right: -75px;
  height: 1px;
  background: var(--maroon);
  /* margin: 8px auto 0; */
}

.section-light .royal-icon::before {
  position: absolute;
  top: 50%;
  left: -75px;
  transform: translateY(-50%);
  content: "";
  width: 60px;
  height: 1px;
  background: var(--maroon);
  /* margin: 8px auto 0; */
}

.section-light .royal-icon i {
  font-size: 20px;
  color: var(--maroon-dark);
  font-weight: 900;
}

.section-dark .royal-icon {
  position: relative;
  display: inline-block;
  /* padding-bottom: 10px; */
}

.section-dark .royal-icon i {
  font-size: 20px;
  color: var(--gold);
  font-weight: 900;
}

.section-dark .royal-icon::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 60px;
  right: -75px;
  height: 1px;
  background: var(--gold);
  /* margin: 8px auto 0; */
}

.section-dark .royal-icon::before {
  position: absolute;
  top: 50%;
  left: -75px;
  transform: translateY(-50%);
  content: "";
  width: 60px;
  height: 1px;
  background: var(--gold);
  /* margin: 8px auto 0; */
}

/* =====================================================
   FOOTER
===================================================== */
/* ================= FOOTER STYLE ================= */

.footer-main {
  background: var(--maroon-dark);
}

.footer-title {
  font-family: var(--font-heading);
  color: #d4af37;
  margin-bottom: 15px;
}

.footer-brand img {
  width: 70px;
}

.footer-text {
  color: #c8c8c8;
  font-size: 14px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #e5e5e5;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
  padding-left: 5px;
}

/* Social Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #d4af37;
  color: #430812;
  margin-right: 8px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Bottom */
.footer-bottom {
  background: var(--maroon);
  font-size: 14px;
}

/* selected hotel  */
/* Modal Styling */
.select-modal {
  border-radius: 18px;
  background: var(--maroon);
  color: var(--gold);
}

/* Selection Card */
.select-card {
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: 0.3s ease;
  background: #fff;
}

.select-card img {
  width: 100%;
  height: 230px;
  /* ← change height you want */
  object-fit: cover;
  /* keeps image ratio & fills nicely */
}

.select-card .hotel-name {
  font-size: 20px;
  color: var(--maroon);
}

/* Required so tick can position */
.select-card {
  position: relative;
}

/* Tick circle (hidden by default) */
.select-card::after {
  content: "\2713";
  /* ✔ symbol */
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d4af37;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.6);
  transition: 0.25s ease;
}

/* Show when active */
.select-card.active::after {
  opacity: 1;
  transform: scale(1);
}

.select-card.active {
  border-color: #d4af37;
  transform: translateY(-5px);
}

/* Gold Button */
/* .btn-gold {
  background: #d4af37;g
  color: #000;
  border: none;
} */

.btn-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 40px;
  }

  .hero-content {
    text-align: center;
    margin: auto;
  }

  .navbar-collapse {
    background-color: var(--maroon);
    padding: 20px;
    border-radius: 10px;
  }
}

/*  */
/* ================= HERO SIZE ================= */
.premium-hero {
  height: 80vh;
  overflow: hidden;
}

.premiumSwiper,
.swiper-slide {
  height: 100%;
  position: relative;
}

/* ================= CINEMATIC IMAGE ================= */
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.38);
  transition: transform 7s ease;
}

.swiper-slide-active .hero-img {
  transform: scale(1);
}

/* ================= LUXURY OVERLAY ================= */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.55)),
    linear-gradient(100deg, rgba(67, 8, 18, 0.85), rgba(91, 13, 24, 0.35));
}

/* ================= HERO TEXT ================= */
.hero-content {
  position: absolute;
  bottom: 18%;
  left: 8%;
  color: #fff;
  z-index: 5;
  max-width: 560px;

  opacity: 0;
  transform: translateY(60px);
  transition: 1s cubic-bezier(0.17, 0.84, 0.44, 1);
}

.swiper-slide-active .hero-content {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  font-family: "Playfair Display";
  letter-spacing: 1px;

  /* Gold text glow */
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.7),
    0 0 18px rgba(197, 157, 95, 0.35);
}

.hero-content p {
  font-size: 18px;
  margin: 18px 0;
  opacity: 0.9;
}

/* ================= GOLD BUTTON ================= */
.hero-btn {
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  color: white;

  background: linear-gradient(135deg, #d4af37, #c59d5f);

  box-shadow:
    0 6px 25px rgba(0, 0, 0, 0.4),
    0 0 18px rgba(212, 175, 55, 0.4);

  transition: all 0.35s ease;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.6),
    0 0 28px rgba(212, 175, 55, 0.6);
}

/* ================= PREMIUM ARROWS ================= */
.swiper-button-next,
.swiper-button-prev {
  width: 64px;
  height: 64px;
  border-radius: 50%;

  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.05));

  backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.25);

  color: #fff;

  transition: all 0.35s ease;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Arrow Hover Magic */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, #d4af37, #c59d5f);
  color: #000;
}

/* Arrow icon size */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 22px;
  font-weight: bold;
}

/* ================= REMOVE PROGRESS BAR ================= */
.swiper-pagination {
  display: none !important;
}

/* order ui */
/* ========= APP FEEL ========= */
.order-ui {
  background: #fafafa;
}

/* toggle */
.toggle-btn {
  padding: 10px 24px;
  border: none;
  background: #eee;
  border-radius: 30px;
}

.toggle-btn.active {
  background: #5b0d18;
  color: #fff;
}

/* menu item */
.menu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.menu-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

.add-btn {
  background: var(--gold);
  border: none;
  padding: 6px 14px;
  color: #fff;
  border-radius: 6px;
}

.qty-control {
  display: none;
  align-items: center;
  gap: 10px;
}

.qty-control button {
  border: none;
  background: #eee;
  padding: 2px 8px;
}

/* cart */
.cart-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  position: sticky;
  top: 100px;
}

.cart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

/* variation modal */
.variation-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.variation-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 320px;
}

.variation-option {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
}

.variation-option.active {
  border-color: #c59d5f;
  background: #fff7e6;
}

/* ===== ORDER UI CLEAN PREMIUM ===== */
/* =============================================
   ORDER SECTION - MODERN & COMPACT PREMIUM STYLE
============================================= */

.order-ui {
  background: linear-gradient(180deg, #fdfaf5 0%, #f8f5f0 100%);
  padding: 3rem 0;
}

.order-ui .container {
  max-width: 1200px;
}

/* === Toggle Buttons === */
.toggle-container {
  margin-bottom: 2rem;
}

.btn-group.toggle-btn-group {
  background: white;
  border-radius: 50px;
  padding: 0.35rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.toggle-btn {
  font-weight: 600;
  font-size: 1rem;
  padding: 0.65rem 2.2rem;
  border: none;
  border-radius: 50px;
  background: transparent;
  color: #555;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: var(--maroon);
  color: white;
  box-shadow: 0 3px 12px rgba(197, 157, 95, 0.35);
}

/* === Reservation Form === */
#dineInBookingForm .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  background: white;
}

#dineInBookingForm .card-body {
  padding: 1.5rem 1.75rem;
}

#dineInBookingForm h5 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: #333;
  font-weight: 700;
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext {
  padding: 1rem 0.9rem;
  height: auto;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #fafafa;
}

.form-floating>label {
  color: #888;
  padding: 1rem 0.9rem;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
  background: white;
  border-color: #c59d5f;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
  color: #c59d5f;
  transform: scale(0.85) translateY(-0.6rem) translateX(0.4rem);
  opacity: 1;
}

/* === Category Chips === */
.category-scroll {
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  gap: 0.6rem !important;
}

.chip {
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 1.25rem;
  border-radius: 2.5rem;
  background: white;
  border: 1px solid #e2e2e2;
  color: #555;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.chip:hover {
  background: #f8f1e8;
  border-color: #d4b88a;
}

.chip.active {
  background: var(--gold);
  color: white;
  border-color: #c59d5f;
  box-shadow: 0 3px 12px rgba(197, 157, 95, 0.25);
}

/* === Menu Grid Cards === */
#menuGrid .card {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.22s ease;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

#menuGrid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

#menuGrid img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

#menuGrid h6 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

#menuGrid .text-muted {
  font-size: 0.82rem;
  line-height: 1.3;
}

#menuGrid .fw-bold {
  font-size: 1.1rem;
  color: #222;
}

#menuGrid .btn-outline-gold {
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  font-weight: 600;
}

/* === Cart Sidebar === */
.cart-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cart-card .card-body {
  padding: 1.5rem;
}

.cart-card h5 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: #222;
}

#cartItemsContainer {
  max-height: 340px;
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-right: -0.5rem;
}

.cart-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid #eee;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item h6 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.cart-item .text-muted {
  font-size: 0.8rem;
}

.cart-qty {
  background: #f8f1e8;
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-weight: 600;
  color: #c59d5f;
}

#cartGrandTotal {
  font-size: 1.5rem;
  color: #222;
}

/* .btn-gold {
  background: #c59d5f;
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.85rem;
  border-radius: 50px;
  transition: all 0.25s ease;
}

.btn-gold:hover {
  background: #b38c4e;
  transform: translateY(-2px);
} */

/* Mobile adjustments */
@media (max-width: 991px) {
  .order-ui {
    padding: 2rem 0;
  }

  .toggle-btn {
    padding: 0.55rem 1.6rem;
    font-size: 0.95rem;
  }

  .cart-card {
    position: static !important;
    margin-top: 2rem;
  }

  #dineInBookingForm .row>div {
    margin-bottom: 0.75rem;
  }
}

/* Better date & time inputs */
.form-floating.date-time-wrapper {
  position: relative;
}

.form-floating.date-time-wrapper input[type="date"],
.form-floating.date-time-wrapper input[type="time"] {
  color: #333;
  font-size: 1rem;
  padding: 1.625rem 0.75rem 0.625rem;
  height: 58px;
  background: white;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

.form-floating.date-time-wrapper input[type="date"]:focus,
.form-floating.date-time-wrapper input[type="time"]:focus {
  border-color: #c59d5f;
  box-shadow: 0 0 0 0.25rem rgba(197, 157, 95, 0.25);
  outline: none;
}

.form-floating.date-time-wrapper input[type="date"]::-webkit-calendar-picker-indicator,
.form-floating.date-time-wrapper input[type="time"]::-webkit-calendar-picker-indicator {
  filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
  opacity: 0.7;
  cursor: pointer;
}

.form-floating.date-time-wrapper label {
  font-size: 0.85rem;
  color: #6c757d;
  padding: 1rem 0.75rem;
  pointer-events: none;
  transform-origin: 0 0;
  transition:
    opacity 0.1s ease-in-out,
    transform 0.1s ease-in-out;
}

.form-floating.date-time-wrapper input:not(:placeholder-shown)~label,
.form-floating.date-time-wrapper input:focus~label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  color: #c59d5f;
}

.about-hero-section {
  background-image: url(../images/gallery/hotel-01.jfif);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* height: 40vh; */
  position: relative;
}

.about-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #5b0d17cc;
}

.about-hero-section>* {
  position: relative;
  z-index: 1;
}

/* abvout us page design  */
.abt-img1-container {
  position: relative;
}

.abt-img1-container .ligacy-div {
  width: 200px;
  background-color: var(--maroon);
  color: var(--gold);
  padding: 20px;
  border-radius: 15px;
}

.abt-img1-container img {
  border-radius: 20px;
}

.abt-img1-container .ligacy-div {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 1;
}

.ligacy-div h6 {
  font-size: 35px;
  font-weight: bold;
  text-align: start;
  margin-bottom: 5px;
}

.ligacy-div p {
  font-size: 16px;
  margin-bottom: 0;
  color: var(--cream);
  text-align: start;
}

.section-light-dark {
  background-color: var(--cream-dark);
  padding: 70px 0px;
}

.why-choose .card {
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  /* background-color: var(--cream); */
  color: var(--text-light);
}

.why-choose .icon {
  width: 60px;
  background-color: #e0d9d98e;
  color: var(--gold);
  border-radius: 50%;
  height: 60px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose .icon i {
  font-size: 24px;
}

@media (max-width:768px) {
  .abt-img1-container .ligacy-div {
    bottom: -60px;
    left: 4px;
  }
}

.why-choose .card h4 {
  color: var(--maroon);
  font-size: 20px;
  font-weight: 700;
}

.abt-cta h2 span {
  font-style: italic;
  color: var(--gold);
}

.abt-cta h4 {
  color: var(--gold);
}

.abt-cta .cta-icon {
  width: 50px;
  height: 50px;
  background-color: #eaeaea47;
  margin: auto;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;

}

.abt-cta .cta-icon i {
  font-size: 20px;
  color: var(--gold);
}

.abt-cta p {
  font-size: 17px;
  color: #c9cacb;
}

.our-story .royal-icon::after {
  display: none;
}

.our-story .royal-icon {
  margin-left: 80px;
}

/* ================= SECTION BACKGROUND ================= */
.contact-section {
  background: #f3eee6;
}

/* ================= FORM BOX ================= */
.contact-form-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* ================= BOOTSTRAP TAB STYLE ================= */
/* TAB BASE */
.nav-pills .nav-link {
  position: relative;
  border-radius: 30px;
  padding: 6px 20px;
  border: 1px solid #6b0f1a;
  color: var(--gold);
  font-weight: 500;
}

/* ACTIVE TAB */
.nav-pills .nav-link.active {
  background: #6b0f1a;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* ARROW BELOW ACTIVE TAB */
.nav-pills .nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;

  width: 0;
  height: 0;

  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid var(--gold);
}

/* ================= MAP ================= */
.tab-content iframe {
  border-radius: 12px;
  width: 100%;
}

/* ================= INFO CARD ================= */
.info-card {
  background: var(--maroon-dark);
  color: #fff;
  border-radius: 16px;
}

.info-card p {
  color: #c7c0c0;
}

/* ICONS INSIDE INFO CARD */
.info-card i {
  font-size: 20px;
  color: #caa24c;
  background-color: var(--maroon);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
}

.info-card h5 {
  color: var(--gold);
}

.info-card .socil-icon i {
  border: 1px solid var(--gold);
  display: inline-flex;
}

/* ================= SOCIAL ICONS ================= */
.info-card .bi-instagram,
.info-card .bi-facebook,
.info-card .bi-youtube {
  font-size: 18px;
  margin-right: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.info-card i:hover {
  transform: scale(1.2);
}

/* hero login section  */
/* Background Section */
.login-hero {
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../images/banner/banner-01.webp");
  position: relative;
}

/* Dark Overlay */
.login-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.233);
}

/* Form Box */
.login-box {
  position: relative;
  margin-top: 50px;
  z-index: 2;
  width: 480px;
  padding: 40px;
  /* background: var(--maroon); */
  background: #5b0d179d;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  /* backdrop-filter: blur(10px); */
}

.login-box .brand-logo img {
  position: absolute;
  width: 130px;
  border-radius: 50%;
  height: 130px;
  border: 10px solid var(--maroon);
  left: 50%;
  top: 0px;
  transform: translate(-50%, -50%);
}

/* Title */
.login-title {
  color: var(--gold);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  /* space between text & lines */
}

/* Left line */
.login-title::before,
.login-title::after {
  content: "";
  flex: 0.3;
  height: 2px;
  background: var(--gold);
  opacity: 0.6;
  width: 50%;
}

/* Text */
.small-text {
  color: #ddd;
}

/* Inputs */
.login-box .form-control {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  /* text-align: center; */
  height: 45px;
  border-radius: 0;
}

/* Forgot link */
.forgot-link,
.register-link {
  color: #ffc107;
  text-decoration: none;
  font-size: 14px;
}

/* ================= REGISTER HERO SECTION ================= */

/* Background Section */
.register-hero {
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background: url("../images/banner/banner-01.webp") center/cover no-repeat;
  position: relative;
}

/* Dark Overlay */
.register-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.233);
}

/* Form Box */
.register-box {
  position: relative;
  z-index: 2;
  width: 580px;
  padding: 40px;
  background: #5b0d179d;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  border-radius: 12px;
}

/* Title */
.register-title {
  color: var(--gold);
  font-family: "Playfair Display", serif;
}

/* Text */
.register-box .small-text {
  color: #ddd;
}

/* Inputs */
.register-box .form-control {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  /* text-align: center; */
  height: 45px;
  border-radius: 0;
}

/* Links */
.login-link {
  color: #ffc107;
  text-decoration: none;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .register-box {
    width: 90%;
    padding: 25px;
  }
}

/* ===== FILTER BUTTONS ===== */
.filter-btns .btn {
  border-radius: 30px;
  padding: 8px 22px;
  font-weight: 500;
  transition: 0.3s;
}

.filter-btns .btn.active,
.filter-btns .btn:hover {
  background: var(--maroon);
  color: var(--gold);
  border-color: var(--maroon);
}


/* ===== GALLERY GRID FIX ===== */
/* GRID SPACING */
.gallery-grid {
  margin-top: 20px;
}

/* CARD */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 260px;
  background: #000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: 0.35s ease;
}

/* Lift on hover */
.gallery-item:hover .gallery-card {
  /* transform:translateY(-6px); */
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

/* IMAGE */
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

/* ZOOM IMAGE */
.gallery-card:hover img {
  transform: scale(1.12);
}


/* ===== OVERLAY USING BEFORE/AFTER ===== */
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.15));
  opacity: 0.3;
  transition: 0.35s ease;
  z-index: 1;

  pointer-events: none;
}

/* .gallery-card::after{
  content:"View Image";
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%) scale(0.85);
  color:#fff;
  font-weight:600;
  letter-spacing:1px;
  background:#6b0f1a;
  padding:9px 20px;
  border-radius:40px;
  opacity:0;
  z-index:2;
  transition:0.35s ease;

  pointer-events:none;
} */

/* SHOW OVERLAY */
.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* DISH NAME */
.dish-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 14px 16px;

  color: #fff;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;

  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0));

  z-index: 3;
  pointer-events: none;
}

/* Optional animation */
.gallery-card:hover .dish-title {
  padding-bottom: 18px;
  transition: 0.3s ease;
}


/* Popup Caption Styling */
.f-caption {

  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;

  color: var(--gold);
  text-align: center;

  padding: 12px 22px;
  margin: 12px auto;

  /* background: linear-gradient(90deg,
      rgba(107, 15, 26, 0.95),
     rgba(107, 15, 26, 0.95)); */

  border-radius: 14px;
  width: fit-content;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);

  backdrop-filter: blur(6px);

  animation: captionFade 0.4s ease;
}

/* menu page css */
.royal-menu {
  background: #f5efe6;
  font-family: 'Poppins', sans-serif;
}

/* Tabs */
.menu-pills .nav-link {
  background: #efe6da;
  border-radius: 12px;
  padding: 8px 18px;
  margin: 4px;
  color: #5a0f18;
  font-weight: 500;
  border: none;
}

.menu-pills .nav-link.active {
  background: #5a0f18;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Card Box */
.menu-box {
  background: #fff;
  border-radius: 14px;
  /* padding:22px; */
  max-width: 900px;
  margin: auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.menu-box .card-header h3 {
  margin-bottom: 0px;
  font-size: 23px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Rows */
.menu-box .menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.menu-box .menu-row:last-child {
  border: none;
}

/* Text */
.menu-box .title {
  font-weight: 600;
  margin-bottom: 4px;
}

.menu-box .desc {
  margin: 0;
  font-size: 14px;
  color: #777;
}

/* Veg/Nonveg */
.menu-box .food-ind {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  border: 2px solid;
  position: relative;
  margin-top: 3px;
}

.food-ind.veg {
  border-color: #1aa31a;
}

.food-ind.veg::before {
  content: " ";
  width: 7px;
  height: 7px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background-color: #1aa31a;
}

.food-ind.nonveg::before {
  content: " ";
  width: 7px;
  height: 7px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background-color: #d32020;
}

.food-ind.nonveg {
  border-color: #d32020;
}

/* Price */
.menu-box .price {
  color: #c59a2b;
  font-weight: 700;
}

/* Button */
.menu-box .add {
  background: #c59a2b;
  color: #fff;
  border-radius: 8px;
  padding: 4px 18px;
  font-weight: 500;
}

.menu-box .add:hover {
  background: #aa8222;
  color: #fff;
}


/* order page  */
.fh-orders-ui {
  background: #f3efe9;
}

/* Sidebar */
.fh-sidebar {
  background: #fff;
  position: sticky;
  top: 90px;
  border-radius: 12px;
  gap: 4px;
  padding: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.fh-sidebar .nav-link {
  color: #666;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  border: 1px solid var(--maroon);
}

.fh-sidebar .nav-link.active {
  background: var(--maroon);
  color: var(--gold);
}

/* Panel */
.fh-panel {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

/* Inputs */
.fh-select {
  width: 150px;
  border-radius: 8px;
}

.fh-search {
  width: 260px;
  border-radius: 8px;
}

/* Cards */
.fh-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.fh-card img {
  border-radius: 10px;
}

/* Badge */
.fh-badge {
  padding: 6px 12px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
}

.delivered {
  background: #2e7d32;
}

.preparing {
  background: #f9a825;
}

.cancelled {
  background: #c62828;
}

/* ---------------- MOBILE RESPONSIVE FIX ---------------- */

@media (max-width: 991px) {

  /* Sidebar becomes horizontal tabs */
  .fh-sidebar {
    display: flex;
    flex-direction: row !important;
    overflow-x: auto;
    white-space: nowrap;
    gap: 8px;
    padding: 8px;
  }

  .fh-sidebar .nav-item {
    flex: 0 0 auto;
  }

  .fh-sidebar .nav-link {
    padding: 8px 14px;
    font-size: 14px;
  }


  /* Top Filters stack nicely */
  .fh-select,
  .fh-search {
    width: 100%;
  }

}


@media (max-width:768px) {

  /* Stack card columns */
  .fh-card .row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Image sizing */
  .fh-card img {
    width: 100%;
    max-height: 160px;
    object-fit: cover;
    margin-bottom: 12px;
  }

  /* Header spacing */
  .fh-card h5 {
    font-size: 16px;
  }

  /* Badge stays right */
  .fh-card .d-flex {
    width: 100%;
  }

  /* Price + buttons full width */
  .fh-card .col-md-3 {
    width: 100%;
    text-align: left;
    margin-top: 10px;
  }

  .fh-card .btn {
    width: 100%;
  }

  /* Improve panel padding */
  .fh-panel {
    padding: 16px;
  }

  /* Filters stack better */
  .fh-select,
  .fh-search {
    width: 100%;
    margin-top: 8px;
  }

}

/* call now btn  */
/* Floating Call Button */
.fh-call-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #c9a44c;
  /* gold */
  color: #fff;
  padding: 12px 18px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: all .25s ease;
  opacity: 0.9;
}

/* Hover */
.fh-call-btn:hover {
  background: #b8923f;
  transform: translateY(-2px);
  opacity: 1;
}

/* Icon circle look */
.fh-call-btn i {
  font-size: 18px;
}

/* order modal start css */
.order-modal {
  border-radius: 18px;
  overflow: hidden;
}

/* Section title */
.section-title {
  font-weight: 600;
  margin-bottom: 8px;
}

/* Item Card */
.order-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  background: #f8f9fa;
  margin-bottom: 8px;
}

.order-item img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
}

.item-info {
  flex: 1;
}

.title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-row h6 {
  margin: 0;
  font-size: 15px;
}

.price {
  font-weight: 600;
  color: #6b0f1a;
}

/* Address box */
.info-box {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
}

/* Summary */
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  background: #eee;
  padding: 10px;
  border-radius: 10px;
  margin-top: 8px;
}

.description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.4;
}

.description .text-primary {
  color: var(--maroon) !important;
}


.pdf-container {
  width: 100%;
  height: 100vh;
  background: var(--bg-body);
  /* dark background like premium apps */
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdf-container iframe {
  width: 80%;
  height: 95vh;
  border: none;
  border-radius: 10px;
}

/* order modal end css */
/* Disabled Restaurant Branch */
.disabled-branch {
  opacity: 0.6;
  filter: grayscale(1);
  pointer-events: none;
  cursor: not-allowed;
  position: relative;
}

.disabled-branch::before {
  /* content: "Currently Unavailable"; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
}