@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Cormorant+Garamond:wght@600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #88181F;
  --primary-dark: #5D0E13;
  --primary-light: #A3232B;
  --cream: #FFF7EC;
  --cream-light: #FFFBF4;
  --white: #FFFFFF;
  --gold: #D6A24A;
  --gold-light: #F3D28A;
  --text-dark: #2A1210;
  --text-muted: #76524B;
  --logo-font: 'Berkshire Swash', cursive;
  --heading-font: 'Berkshire Swash', cursive;
  --paragraph-font: 'Poppins', sans-serif;
  --body-font: 'Poppins', sans-serif;
}

/* IMPORTANT:
   This file keeps your original layout structure.
   Only theme colors, logo font, and small alignment fixes are updated.
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
@font-face {
  font-family: 'Becker';
  src: url('fonts/becker.regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: var(--body-font);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* =========================
   HEADER
========================= */

.chaahat-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgb(0 0 0);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(93, 14, 19, 0.12);
  box-shadow: 0 8px 28px rgba(93, 14, 19, 0.08);
}

.chaahat-navbar {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* LOGO */
.chaahat-logo,
.chaahat-mobile-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  flex-shrink: 0;
}

.chaahat-logo span,
.chaahat-mobile-logo span {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.chaahat-logo small,
.chaahat-mobile-logo small {
  margin-top: 8px;
  font-size: 11px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

/* DESKTOP MENU */
.chaahat-desktop-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  flex: 1;
  min-width: 0;
}

.chaahat-desktop-menu li {
  flex-shrink: 0;
}

.chaahat-desktop-menu li a {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s ease;
  text-transform: uppercase;
}

.chaahat-desktop-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: 0.35s ease;
}

.chaahat-desktop-menu li a:hover,
.chaahat-desktop-menu li a.active {
  color: #ffffff;
}

.chaahat-desktop-menu li a:hover::after,
.chaahat-desktop-menu li a.active::after {
  width: 100%;
}

/* DESKTOP ORDER BUTTON */
.chaahat-order-btn {
  position: relative;
  text-decoration: none;
  padding: 13px 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 12px 26px rgba(136, 24, 31, 0.25);
  transition: 0.35s ease;
}

.chaahat-order-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.chaahat-order-btn:hover::before {
  left: 120%;
}

.chaahat-order-btn:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.chaahat-order-btn i {
  transition: 0.35s ease;
}

.chaahat-order-btn:hover i {
  transform: translateX(5px);
}

/* MOBILE TOGGLE */
.chaahat-toggle {
  width: 48px;
  height: 48px;
  border: none;
  outline: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(214, 162, 74, 0.32);
  transition: 0.35s ease;
}

.chaahat-toggle:hover {
  background: var(--primary);
  transform: scale(1.05);
}

/* =========================
   MOBILE RIGHT MENU
========================= */

.chaahat-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 18, 16, 0.58);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.45s ease;
}

.chaahat-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.chaahat-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88%, 430px);
  height: 100vh;
  z-index: 10001;
  background:
    radial-gradient(circle at top right, rgba(214, 162, 74, 0.18), transparent 35%),
    var(--cream);
  padding: 24px 26px;
  transform: translateX(110%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -20px 0 55px rgba(42, 18, 16, 0.28);
  overflow-y: auto;
}

.chaahat-mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chaahat-close {
  width: 52px;
  height: 52px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(214, 162, 74, 0.35);
  transition: 0.4s ease;
}

.chaahat-close:hover {
  background: var(--primary);
  transform: rotate(90deg) scale(1.05);
}

.mobile-menu-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-dark), transparent);
  margin: 24px 0 28px;
}

.chaahat-mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.chaahat-mobile-links li {
  opacity: 0;
  transform: translateX(45px);
}

.chaahat-mobile-menu.active .chaahat-mobile-links li {
  animation: menuSlide 0.55s ease forwards;
  animation-delay: calc(var(--i) * 0.08s);
}

@keyframes menuSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.chaahat-mobile-links li a {
  position: relative;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  padding: 16px 4px;
  transition: 0.35s ease;
}

.chaahat-mobile-links li a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--gold);
  margin-right: 0;
  transition: 0.35s ease;
}

.chaahat-mobile-links li a:hover,
.chaahat-mobile-links li a.active {
  color: var(--primary);
  padding-left: 10px;
}

.chaahat-mobile-links li a:hover::before,
.chaahat-mobile-links li a.active::before {
  width: 28px;
  margin-right: 12px;
}

/* MOBILE ORDER BUTTON */
.mobile-order-btn {
  position: relative;
  margin-top: 34px;
  width: 100%;
  min-height: 64px;
  text-decoration: none;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(136, 24, 31, 0.32);
  transition: 0.35s ease;
  opacity: 0;
  transform: translateY(25px);
}

.chaahat-mobile-menu.active .mobile-order-btn {
  animation: orderFade 0.65s ease forwards;
  animation-delay: 0.65s;
}

@keyframes orderFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-order-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.mobile-order-btn:hover::before {
  left: 120%;
}

.mobile-order-btn:hover {
  background: var(--gold);
}

.mobile-order-btn i {
  transition: 0.35s ease;
}

.mobile-order-btn:hover i {
  transform: translateX(6px);
}

.mobile-menu-bottom {
  margin-top: 32px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(93, 14, 19, 0.06);
  border: 1px solid rgba(93, 14, 19, 0.1);
  opacity: 0;
  transform: translateY(25px);
}

.chaahat-mobile-menu.active .mobile-menu-bottom {
  animation: orderFade 0.65s ease forwards;
  animation-delay: 0.78s;
}

.mobile-menu-bottom p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =========================
   HERO SLIDER
========================= */

.chaahat-hero-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
  transition: opacity 1s ease, visibility 1s ease, transform 4s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 18, 16, 0.92), rgba(93, 14, 19, 0.72), rgba(93, 14, 19, 0.38)),
    radial-gradient(circle at 75% 40%, rgba(214, 162, 74, 0.28), transparent 32%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 150px 28px 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  align-items: center;
  gap: 45px;
}

/* HERO CONTENT */
.hero-content {
  max-width: 720px;
}

.hero-slide.active .hero-content {
  animation: heroTextUp 0.9s ease forwards;
}

@keyframes heroTextUp {
  from {
    opacity: 0;
    transform: translateY(45px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-subtitle::before {
  content: "";
  width: 48px;
  height: 2px;
  background: var(--gold-light);
}

.hero-content h1 {
  margin-top: 20px;
  font-family: var(--heading-font);
  font-size: clamp(48px, 6vw, 60px);
  line-height: 0.95;
  color: var(--cream);
  max-width: 790px;
}

.hero-content p {
  max-width: 590px;
  margin-top: 24px;
  color: #f8e7cf;
  font-size: 17px;
  line-height: 1.8;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  position: relative;
  min-width: 160px;
  min-height: 54px;
  padding: 15px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: 0.35s ease;
}

.primary-btn {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 18px 35px rgba(136, 24, 31, 0.35);
}

.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.primary-btn:hover::before {
  left: 120%;
}

.primary-btn:hover {
  background: var(--gold);
  transform: translateY(-4px);
}

.primary-btn i {
  transition: 0.35s ease;
}

.primary-btn:hover i {
  transform: translateX(6px);
}

.secondary-btn {
  color: var(--cream);
  border: 1px solid rgba(255, 247, 236, 0.5);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.secondary-btn:hover {
  background: var(--cream);
  color: var(--primary);
  transform: translateY(-4px);
}

/* =========================
   HERO FOOD IMAGE AREA
========================= */

.hero-food-showcase {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 500px;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(243, 210, 138, 0.58), rgba(136, 24, 31, 0.18), transparent 68%);
  filter: blur(4px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    transform: scale(0.95);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* ONLINE FOOD IMAGE */
.hero-food-img {
  position: relative;
  z-index: 3;
  width: min(100%, 430px);
  height: 430px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 12px solid rgba(255, 247, 236, 0.18);
  box-shadow:
    0 35px 55px rgba(0, 0, 0, 0.45),
    inset 0 0 0 2px rgba(255, 255, 255, 0.25);
  transform-origin: center;
}

.hero-slide.active .hero-food-img {
  animation: foodImageEntry 1.05s ease forwards, foodFloat 4s ease-in-out infinite 1.05s;
}

@keyframes foodImageEntry {
  from {
    opacity: 0;
    transform: translateX(70px) scale(0.82) rotate(8deg);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
  }
}

@keyframes foodFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-18px) rotate(1.5deg);
  }
}

/* FOOD INFO BADGE */
.food-info-badge {
  position: absolute;
  left: 10px;
  bottom: 42px;
  z-index: 5;
  padding: 17px 24px;
  min-width: 210px;
  border-radius: 22px;
  background: rgba(255, 247, 236, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 45px rgba(20, 6, 3, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(26px);
}

.hero-slide.active .food-info-badge {
  animation: badgeUp 0.75s ease forwards;
  animation-delay: 0.45s;
}

@keyframes badgeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.food-info-badge span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.food-info-badge h4 {
  font-family: var(--heading-font);
  color: var(--primary-dark);
  font-size: 32px;
  line-height: 1;
}

/* FLOATING TAGS */
.floating-tag {
  position: absolute;
  z-index: 4;
  padding: 12px 18px;
  border-radius: 40px;
  background: rgba(255, 247, 236, 0.92);
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 18px 35px rgba(20, 6, 3, 0.23);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
}

.floating-tag i {
  color: var(--primary);
}

.tag-one {
  top: 75px;
  left: 5px;
}

.tag-two {
  right: 8px;
  bottom: 115px;
}

.hero-slide.active .tag-one {
  animation: tagInLeft 0.75s ease forwards, tagFloatOne 3.5s ease-in-out infinite 1.4s;
  animation-delay: 0.65s, 1.4s;
}

.hero-slide.active .tag-two {
  animation: tagInRight 0.75s ease forwards, tagFloatTwo 3.8s ease-in-out infinite 1.55s;
  animation-delay: 0.8s, 1.55s;
}

@keyframes tagInLeft {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tagInRight {
  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tagFloatOne {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes tagFloatTwo {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

/* HERO ARROWS */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 8;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 247, 236, 0.35);
  border-radius: 50%;
  background: rgba(255, 247, 236, 0.12);
  color: var(--cream);
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: 0.35s ease;
}

.hero-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev {
  left: 28px;
}

.hero-next {
  right: 28px;
}

/* HERO DOTS */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 9;
  display: flex;
  gap: 12px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 30px;
  background: rgba(255, 247, 236, 0.55);
  cursor: pointer;
  transition: 0.35s ease;
}

.hero-dots button.active {
  width: 38px;
  background: var(--gold-light);
}

/* HERO PROGRESS */
.hero-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 4px;
  background: rgba(255, 247, 236, 0.18);
}

.hero-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold-light);
}

/* =========================
   RESPONSIVE
========================= */

/* Desktop menu hide before overflow */
@media (max-width: 1180px) {
  .chaahat-desktop-menu,
  .desktop-order {
    display: none;
  }

  .chaahat-toggle {
    display: flex;
  }

  .chaahat-navbar {
    padding: 14px 22px;
  }
}

@media (max-width: 991px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding: 125px 22px 95px;
    gap: 45px;
    align-content: center;
  }

  .hero-food-showcase {
    justify-self: center;
    max-width: 460px;
    min-height: 470px;
    padding: 35px 0 70px;
  }

  .hero-food-img {
    width: 380px;
    height: 380px;
  }

  .food-glow {
    width: 330px;
    height: 330px;
  }

  .food-info-badge {
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%) translateY(26px);
    text-align: center;
  }

  .hero-slide.active .food-info-badge {
    animation: mobileBadgeUp 0.75s ease forwards;
    animation-delay: 0.45s;
  }

  .tag-one {
    top: 35px;
    left: 10px;
  }

  .tag-two {
    right: 10px;
    bottom: 115px;
  }

  .hero-arrow {
    display: none;
  }
}

@keyframes mobileBadgeUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 576px) {
  .chaahat-navbar {
    padding: 13px 18px;
  }

  .chaahat-logo span,
  .chaahat-mobile-logo span {
    font-size: 28px;
  }

  .chaahat-logo small,
  .chaahat-mobile-logo small {
    margin-top: 7px;
    font-size: 9px;
    letter-spacing: 2.4px;
  }

  .chaahat-toggle,
  .chaahat-close {
    width: 46px;
    height: 46px;
  }

  .chaahat-mobile-menu {
    width: 92%;
    padding: 22px;
  }

  .chaahat-mobile-links li a {
    font-size: 20px;
    padding: 14px 4px;
  }

  .chaahat-hero-slider,
  .hero-slide {
    min-height: 980px;
  }

  .hero-container {
    min-height: 980px;
    padding: 118px 18px 110px;
    gap: 34px;
    align-content: start;
  }

  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero-subtitle::before {
    width: 34px;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-btn {
    width: 100%;
  }

  /* MOBILE FOOD GAP FIX */
  .hero-food-showcase {
    min-height: 430px;
    max-width: 100%;
    width: 100%;
    margin-top: 8px;
    padding: 42px 0 78px;
  }

  .hero-food-img {
    width: 292px;
    height: 292px;
    border-width: 8px;
  }

  .food-glow {
    width: 275px;
    height: 275px;
  }

  .food-info-badge {
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%) translateY(26px);
    min-width: 205px;
    padding: 14px 18px;
    border-radius: 18px;
    text-align: center;
  }

  .food-info-badge h4 {
    font-size: 26px;
  }

  .food-info-badge span {
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .floating-tag {
    padding: 10px 14px;
    font-size: 12px;
  }

  .tag-one {
    top: 30px;
    left: 12px;
  }

  .tag-two {
    right: 12px;
    bottom: 102px;
  }

  .hero-dots {
    bottom: 30px;
  }
}

@media (max-width: 380px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-food-showcase {
    min-height: 400px;
    padding: 38px 0 72px;
  }

  .hero-food-img {
    width: 260px;
    height: 260px;
  }

  .food-glow {
    width: 238px;
    height: 238px;
  }

  .food-info-badge {
    min-width: 170px;
    padding: 12px 14px;
  }

  .food-info-badge h4 {
    font-size: 23px;
  }

  .floating-tag {
    font-size: 11px;
    padding: 9px 12px;
  }

  .tag-one {
    top: 30px;
    left: 6px;
  }

  .tag-two {
    right: 6px;
    bottom: 98px;
  }
}
/* =========================
   ABOUT SECTION
========================= */

.chaahat-about-section {
  position: relative;
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.about-bg-pattern {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(214, 162, 74, 0.12);
}

.about-bg-pattern::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -180px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(136, 24, 31, 0.08);
}

.chaahat-about-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 70px;
}

/* LEFT IMAGE DESIGN */
.about-image-area {
  position: relative;
  min-height: 610px;
}

.about-main-image {
  position: absolute;
  left: 0;
  top: 20px;
  width: 78%;
  height: 520px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(93, 14, 19, 0.22);
}

.about-main-image img,
.about-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-main-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(35, 12, 5, 0.25));
}

.about-small-image {
  position: absolute;
  right: 0;
  bottom: 20px;
  width: 46%;
  height: 260px;
  border-radius: 28px;
  overflow: hidden;
  border: 10px solid var(--cream);
  box-shadow: 0 25px 55px rgba(93, 14, 19, 0.25);
}

.about-experience-card {
  position: absolute;
  left: 38px;
  bottom: 38px;
  min-width: 190px;
  padding: 24px 26px;
  border-radius: 24px;
  background: rgba(255, 247, 236, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 22px 45px rgba(93, 14, 19, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.about-experience-card h3 {
  font-family: var(--heading-font);
  font-size: 48px;
  line-height: 0.9;
  color: var(--primary);
}

.about-experience-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 700;
}

/* RIGHT CONTENT */
.about-content-area {
  max-width: 670px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-tag::before {
  content: "";
  width: 44px;
  height: 2px;
  background: var(--gold);
}

.about-content-area h2 {
  margin-top: 18px;
  font-family: var(--heading-font);
  font-size: clamp(42px, 5vw, 40px);
  line-height: 1;
  color: var(--primary-dark);
}

.about-content-area p {
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
}

/* FEATURES */
.about-feature-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.about-feature-box {
  padding: 18px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(93, 14, 19, 0.08);
  box-shadow: 0 12px 28px rgba(93, 14, 19, 0.06);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.35s ease;
}

.about-feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(93, 14, 19, 0.12);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(136, 24, 31, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-feature-box h4 {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 800;
}

.about-feature-box span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.4;
}

/* BUTTONS */
.about-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.about-primary-btn,
.about-secondary-btn {
  min-height: 54px;
  padding: 15px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.35s ease;
}

.about-primary-btn {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(136, 24, 31, 0.22);
}

.about-primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.34), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.about-primary-btn:hover::before {
  left: 120%;
}

.about-primary-btn:hover {
  background: var(--gold);
  transform: translateY(-4px);
}

.about-primary-btn i {
  transition: 0.35s ease;
}

.about-primary-btn:hover i {
  transform: translateX(6px);
}

.about-secondary-btn {
  color: var(--primary);
  background: transparent;
  border: 1px solid rgba(136, 24, 31, 0.22);
}

.about-secondary-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}

/* RESPONSIVE ABOUT */
@media (max-width: 991px) {
  .chaahat-about-section {
    padding: 90px 0;
  }

  .chaahat-about-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-image-area {
    max-width: 650px;
    width: 100%;
    min-height: 560px;
    margin: 0 auto;
  }

  .about-content-area {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .chaahat-about-section {
    padding: 75px 0;
  }

  .chaahat-about-container {
    padding: 0 18px;
    gap: 40px;
  }

  .about-image-area {
    min-height: 480px;
  }

  .about-main-image {
    width: 88%;
    height: 390px;
    border-radius: 26px;
  }

  .about-small-image {
    width: 56%;
    height: 180px;
    border-width: 7px;
    border-radius: 22px;
    bottom: 18px;
  }

  .about-experience-card {
    left: 18px;
    bottom: 28px;
    min-width: 155px;
    padding: 18px;
    border-radius: 20px;
  }

  .about-experience-card h3 {
    font-size: 38px;
  }

  .about-experience-card span {
    font-size: 12px;
  }

  .section-tag {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .section-tag::before {
    width: 34px;
  }

  .about-content-area h2 {
    font-size: 42px;
  }

  .about-content-area p {
    font-size: 15px;
  }

  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .about-actions {
    gap: 12px;
  }

  .about-primary-btn,
  .about-secondary-btn {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .about-image-area {
    min-height: 440px;
  }

  .about-main-image {
    height: 350px;
  }

  .about-small-image {
    height: 160px;
  }

  .about-content-area h2 {
    font-size: 38px;
  }
}
/* =========================
   PREMIUM MENU SECTION
========================= */

.chaahat-menu-section {
  position: relative;
  padding: 125px 0;
  background:
    radial-gradient(circle at top left, rgba(214, 162, 74, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(136, 24, 31, 0.10), transparent 32%),
    linear-gradient(180deg, var(--cream) 0%, #FFF0DE 100%);
  overflow: hidden;
}

.menu-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.shape-one {
  width: 340px;
  height: 340px;
  left: -170px;
  top: 120px;
  background: rgba(136, 24, 31, 0.08);
}

.shape-two {
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: 90px;
  background: rgba(214, 162, 74, 0.12);
}

.chaahat-menu-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.menu-section-head {
  max-width: 780px;
  margin: 0 auto 55px;
  text-align: center;
}

.menu-section-head .section-tag {
  justify-content: center;
}

.menu-section-head .section-tag::before {
  display: none;
}

.menu-section-head h2 {
  margin-top: 16px;
  font-family: var(--heading-font);
  font-size: clamp(54px, 5vw, 40px);
  line-height: 0.95;
  color: var(--primary-dark);
}

.menu-section-head p {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.85;
}

/* MAIN PREMIUM LAYOUT */
.premium-menu-layout {
  display: grid;
  grid-template-columns: 280px 1fr 340px;
  gap: 26px;
  align-items: stretch;
}

/* CATEGORY CARD */
.menu-category-card {
  position: sticky;
  top: 115px;
  min-height: 560px;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 247, 236, 0.94), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(93, 14, 19, 0.10);
  box-shadow: 0 24px 60px rgba(93, 14, 19, 0.10);
  display: flex;
  flex-direction: column;
}

.menu-category-card > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.menu-category-card h3 {
  margin-top: 12px;
  font-family: var(--heading-font);
  color: var(--primary-dark);
  font-size: 27px;
  line-height: 1;
}

.menu-tabs {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}

.menu-tab {
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 17px 18px;
  border-radius: 20px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 800;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 12px 28px rgba(93, 14, 19, 0.06);
  border: 1px solid rgba(93, 14, 19, 0.08);
  transition: 0.35s ease;
}

.menu-tab i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(214, 162, 74, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--primary);
  color: var(--white);
  transform: translateX(8px);
  box-shadow: 0 18px 36px rgba(136, 24, 31, 0.22);
}

.menu-tab:hover i,
.menu-tab.active i {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.menu-order-link {
  position: relative;
  margin-top: auto;
  min-height: 56px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: 0.35s ease;
}

.menu-order-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.36), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.menu-order-link:hover::before {
  left: 120%;
}

.menu-order-link:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.menu-order-link i {
  transition: 0.35s ease;
}

.menu-order-link:hover i {
  transform: translateX(6px);
}

/* MENU CONTENT */
.premium-menu-content {
  min-height: 560px;
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: menuFadeUp 0.55s ease forwards;
}

@keyframes menuFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FEATURED CARD */
.featured-menu-card {
  position: relative;
  min-height: 260px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--primary-dark);
  box-shadow: 0 24px 60px rgba(93, 14, 19, 0.16);
  margin-bottom: 22px;
}

.featured-menu-img {
  position: absolute;
  inset: 0;
}

.featured-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.featured-menu-card:hover .featured-menu-img img {
  transform: scale(1.08);
}

.featured-menu-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 18, 16, 0.88), rgba(42, 18, 16, 0.45), rgba(42, 18, 16, 0.20)),
    radial-gradient(circle at right, rgba(214, 162, 74, 0.22), transparent 35%);
}

.featured-menu-text {
  position: relative;
  z-index: 2;
  max-width: 470px;
  padding: 34px;
}

.featured-menu-text span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.featured-menu-text h3 {
  margin-top: 12px;
  font-family: var(--heading-font);
  color: var(--cream);
  font-size: 30px;
  line-height: 0.95;
}

.featured-menu-text p {
  margin-top: 16px;
  color: #f8e7cf;
  font-size: 15px;
  line-height: 1.75;
}

/* FOOD ITEMS */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.premium-food-item {
  position: relative;
  padding: 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(93, 14, 19, 0.08);
  box-shadow: 0 14px 34px rgba(93, 14, 19, 0.07);
  display: grid;
  grid-template-columns: 104px 1fr;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  transition: 0.35s ease;
}

.premium-food-item::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(214, 162, 74, 0.10);
  transition: 0.35s ease;
}

.premium-food-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(93, 14, 19, 0.13);
}

.premium-food-item:hover::before {
  transform: scale(1.5);
}

.food-thumb {
  width: 104px;
  height: 104px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.food-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}

.premium-food-item:hover .food-thumb img {
  transform: scale(1.12);
}

.premium-food-item div:last-child {
  position: relative;
  z-index: 2;
}

.premium-food-item span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.premium-food-item h4 {
  margin-top: 6px;
  font-family: var(--heading-font);
  color: var(--primary-dark);
  font-size: 30px;
  line-height: 1;
}

.premium-food-item p {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

/* BOOK TABLE CARD */
.premium-book-card {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  background: url("../images/book.jpg") center/cover no-repeat;
  box-shadow: 0 26px 70px rgba(93, 14, 19, 0.20);
}

.book-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 18, 16, 0.20), rgba(42, 18, 16, 0.92)),
    radial-gradient(circle at top right, rgba(214, 162, 74, 0.34), transparent 35%);
}

.book-card-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.book-card-content > span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.book-card-content h3 {
  margin-top: 12px;
  font-family: var(--heading-font);
  color: var(--cream);
  font-size: 40px;
  line-height: 0.95;
}

.book-card-content p {
  margin-top: 16px;
  color: #f8e7cf;
  font-size: 15px;
  line-height: 1.8;
}

.book-card-features {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.book-card-features div {
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255, 247, 236, 0.13);
  border: 1px solid rgba(255, 247, 236, 0.18);
  backdrop-filter: blur(10px);
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
}

.book-card-features i {
  color: var(--gold-light);
}

.book-card-features span {
  color: var(--cream);
  font-size: 14px;
  font-weight: 700;
}

.book-table-btn {
  position: relative;
  margin-top: 28px;
  min-height: 56px;
  padding: 15px 26px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: 0.35s ease;
}

.book-table-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.36), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.book-table-btn:hover::before {
  left: 120%;
}

.book-table-btn:hover {
  background: var(--primary);
  transform: translateY(-4px);
}

.book-table-btn i {
  transition: 0.35s ease;
}

.book-table-btn:hover i {
  transform: translateX(6px);
}

/* RESPONSIVE MENU */
@media (max-width: 1200px) {
  .premium-menu-layout {
    grid-template-columns: 260px 1fr;
  }

  .premium-book-card {
    grid-column: 1 / -1;
    min-height: 420px;
  }

  .book-card-content {
    min-height: 420px;
  }
}

@media (max-width: 900px) {
  .premium-menu-layout {
    grid-template-columns: 1fr;
  }

  .menu-category-card {
    position: relative;
    top: 0;
    min-height: auto;
  }

  .menu-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu-tab {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 15px 12px;
  }

  .menu-tab:hover,
  .menu-tab.active {
    transform: translateY(-4px);
  }
}

@media (max-width: 576px) {
  .chaahat-menu-section {
    padding: 82px 0;
  }

  .chaahat-menu-container {
    padding: 0 18px;
  }

  .menu-section-head {
    margin-bottom: 36px;
  }

  .menu-section-head h2 {
    font-size: 42px;
  }

  .menu-section-head p {
    font-size: 15px;
  }

  .menu-category-card {
    padding: 22px;
    border-radius: 28px;
  }

  .menu-category-card h3 {
    font-size: 34px;
  }

  .menu-tabs {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .menu-tab {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
  }

  .featured-menu-card {
    min-height: 340px;
    border-radius: 28px;
  }

  .featured-menu-text {
    padding: 28px 22px;
  }

  .featured-menu-text h3 {
    font-size: 38px;
  }

  .premium-food-item {
    grid-template-columns: 86px 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
  }

  .food-thumb {
    width: 86px;
    height: 86px;
    border-radius: 18px;
  }

  .premium-food-item h4 {
    font-size: 25px;
  }

  .premium-food-item p {
    font-size: 13px;
  }

  .premium-book-card,
  .book-card-content {
    min-height: 460px;
  }

  .book-card-content {
    padding: 28px 22px;
  }

  .book-card-content h3 {
    font-size: 44px;
  }
}
/* =========================
   RESERVATION SECTION
========================= */

.chaahat-reservation-section {
  position: relative;
  padding: 125px 0;
  background:
    linear-gradient(90deg, rgba(31, 10, 5, 0.94), rgba(58, 20, 10, 0.88)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1800&q=80") center/cover fixed;
  overflow: hidden;
}

.reservation-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.reservation-shape-one {
  width: 360px;
  height: 360px;
  left: -150px;
  top: 90px;
  background: rgba(214, 162, 74, 0.20);
}

.reservation-shape-two {
  width: 440px;
  height: 440px;
  right: -180px;
  bottom: 60px;
  background: rgba(136, 24, 31, 0.28);
}

.chaahat-reservation-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.05fr;
  align-items: center;
  gap: 70px;
}

/* LEFT CONTENT */
.reservation-left-content {
  max-width: 640px;
}

.reservation-left-content .section-tag {
  color: var(--gold-light);
}

.reservation-left-content .section-tag::before {
  background: var(--gold-light);
}

.reservation-left-content h2 {
  margin-top: 18px;
  font-family: var(--heading-font);
  font-size: clamp(51px, 5vw, 42px);
  line-height: 0.95;
  color: var(--cream);
}

.reservation-left-content p {
  margin-top: 24px;
  color: #f8e7cf;
  font-size: 16px;
  line-height: 1.85;
}

.reservation-feature-list {
  margin-top: 36px;
  display: grid;
  gap: 16px;
}

.reservation-feature-box {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 247, 236, 0.11);
  border: 1px solid rgba(255, 247, 236, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.35s ease;
}

.reservation-feature-box:hover {
  background: rgba(255, 247, 236, 0.17);
  transform: translateY(-6px);
}

.reservation-feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(243, 210, 138, 0.17);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex-shrink: 0;
}

.reservation-feature-box h4 {
  color: var(--cream);
  font-size: 17px;
  font-weight: 800;
}

.reservation-feature-box span {
  display: block;
  margin-top: 5px;
  color: #f8e7cf;
  font-size: 13px;
  line-height: 1.5;
}

/* FOOD ROW */
.reservation-food-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
}

.reservation-food-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255, 247, 236, 0.18);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  margin-right: -18px;
  transition: 0.35s ease;
}

.reservation-food-img:hover {
  transform: translateY(-8px) scale(1.06);
  z-index: 3;
}

.reservation-food-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reservation-food-text {
  margin-left: 34px;
  color: var(--cream);
}

.reservation-food-text strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.reservation-food-text span {
  display: block;
  margin-top: 5px;
  color: #f8e7cf;
  font-size: 13px;
}

/* RIGHT BOOKING CARD */
.reservation-booking-card {
  position: relative;
  padding: 36px;
  border-radius: 38px;
  background: rgba(255, 247, 236, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.30);
  overflow: hidden;
}

.reservation-booking-card::before {
  content: "";
  position: absolute;
  top: -95px;
  right: -95px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(214, 162, 74, 0.18);
}

.reservation-booking-card::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(136, 24, 31, 0.10);
}

.booking-card-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 24px;
}

.booking-card-header span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.booking-card-header h3 {
  margin-top: 10px;
  font-family: var(--heading-font);
  color: var(--primary-dark);
  font-size: 52px;
  line-height: 1;
}

.booking-card-header p {
  max-width: 430px;
  margin: 12px auto 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* IFRAME BOX */
.booking-iframe-box {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 540px;
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(93, 14, 19, 0.10);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 18px 45px rgba(93, 14, 19, 0.12);
}

.booking-iframe-box iframe {
  display: block;
  width: 100%;
  min-height: 540px;
  border: none;
  overflow: hidden;
  background: var(--white);
}

/* =========================
   RESPONSIVE RESERVATION
========================= */

@media (max-width: 991px) {
  .chaahat-reservation-section {
    padding: 95px 0;
    background-attachment: scroll;
  }

  .chaahat-reservation-container {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .reservation-left-content {
    max-width: 100%;
  }

  .reservation-booking-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .booking-iframe-box,
  .booking-iframe-box iframe {
    min-height: 580px;
  }
}

@media (max-width: 576px) {
  .chaahat-reservation-section {
    padding: 80px 0;
  }

  .chaahat-reservation-container {
    padding: 0 18px;
    gap: 42px;
  }

  .reservation-left-content h2 {
    font-size: 42px;
  }

  .reservation-left-content p {
    font-size: 15px;
  }

  .reservation-feature-box {
    padding: 16px;
    border-radius: 20px;
  }

  .reservation-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 19px;
  }

  .reservation-food-row {
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 18px;
  }

  .reservation-food-img {
    width: 78px;
    height: 78px;
    border-width: 5px;
  }

  .reservation-food-text {
    width: 100%;
    margin-left: 0;
    margin-top: 6px;
  }

  .reservation-booking-card {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .booking-card-header {
    margin-bottom: 20px;
  }

  .booking-card-header h3 {
    font-size: 40px;
  }

  .booking-card-header p {
    font-size: 14px;
  }

  .booking-iframe-box {
    border-radius: 20px;
  }

  .booking-iframe-box,
  .booking-iframe-box iframe {
    min-height: 620px;
  }
}

@media (max-width: 380px) {
  .reservation-left-content h2 {
    font-size: 38px;
  }

  .booking-card-header h3 {
    font-size: 36px;
  }

  .reservation-booking-card {
    padding: 22px 14px;
  }

  .booking-iframe-box,
  .booking-iframe-box iframe {
    min-height: 640px;
  }
}
/* =========================
   NEW PREMIUM GALLERY
========================= */

.chaahat-gallery-section {
  position: relative;
  padding: 125px 0;
  background:
    radial-gradient(circle at top left, rgba(214, 162, 74, 0.14), transparent 30%),
    radial-gradient(circle at bottom right, rgba(136, 24, 31, 0.09), transparent 34%),
    linear-gradient(180deg, var(--cream) 0%, #FFF3E1 100%);
  overflow: hidden;
}

.gallery-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.gallery-decor-one {
  width: 340px;
  height: 340px;
  left: -150px;
  top: 120px;
  background: rgba(136, 24, 31, 0.07);
}

.gallery-decor-two {
  width: 420px;
  height: 420px;
  right: -200px;
  bottom: 70px;
  background: rgba(214, 162, 74, 0.11);
}

.chaahat-gallery-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

/* TOP BAR */
.gallery-topbar {
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: end;
}

.gallery-heading {
  max-width: 760px;
}

.gallery-heading h2 {
  margin-top: 16px;
  font-family: var(--heading-font);
  font-size: clamp(52px, 5vw, 42px);
  line-height: 0.95;
  color: var(--primary-dark);
}

.gallery-intro-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(93, 14, 19, 0.08);
  box-shadow: 0 18px 45px rgba(93, 14, 19, 0.08);
}

.gallery-intro-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.gallery-explore-btn {
  position: relative;
  margin-top: 18px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: 0.35s ease;
}

.gallery-explore-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.gallery-explore-btn:hover::before {
  left: 120%;
}

.gallery-explore-btn:hover {
  background: var(--gold);
  transform: translateY(-4px);
}

.gallery-explore-btn i {
  transition: 0.35s ease;
}

.gallery-explore-btn:hover i {
  transform: translateX(6px);
}

/* SHOWCASE LAYOUT */
.chaahat-gallery-showcase {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.showcase-right-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.showcase-row-two,
.showcase-row-three {
  display: grid;
  gap: 24px;
}

.showcase-row-two {
  grid-template-columns: repeat(2, 1fr);
}

.showcase-row-three {
  grid-template-columns: repeat(3, 1fr);
}

/* CARD */
.gallery-showcase-card {
  position: relative;
  min-height: 250px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--primary-dark);
  box-shadow: 0 22px 55px rgba(93, 14, 19, 0.12);
  cursor: pointer;
  isolation: isolate;
}

.showcase-main {
  min-height: 100%;
}

.showcase-main img,
.gallery-showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s ease;
}

.gallery-showcase-card:hover img {
  transform: scale(1.1) rotate(1deg);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(42, 18, 16, 0.08), rgba(42, 18, 16, 0.90)),
    radial-gradient(circle at top right, rgba(214, 162, 74, 0.22), transparent 35%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.showcase-overlay span {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  transition: 0.45s ease;
}

.showcase-overlay h3 {
  margin-top: 8px;
  padding-right: 60px;
  font-family: var(--heading-font);
  color: var(--cream);
  font-size: 21px;
  line-height: 1;
  opacity: 0;
  transform: translateY(18px);
  transition: 0.45s ease 0.06s;
}

.gallery-showcase-card:hover .showcase-overlay span,
.gallery-showcase-card:hover .showcase-overlay h3 {
  opacity: 1;
  transform: translateY(0);
}

.showcase-plus-btn {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.4) rotate(-90deg);
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-showcase-card:hover .showcase-plus-btn {
  transform: scale(1) rotate(0);
  opacity: 1;
}

.showcase-plus-btn:hover {
  background: var(--primary);
}

/* FEATURE STRIP */
.gallery-feature-strip {
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(136, 24, 31, 0.96), rgba(93, 14, 19, 0.96));
  box-shadow: 0 22px 55px rgba(93, 14, 19, 0.16);
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-strip-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-strip-content h4 {
  color: var(--cream);
  font-size: 24px;
  font-family: var(--heading-font);
  line-height: 1;
}

.feature-strip-content p {
  margin-top: 8px;
  color: #f8e7cf;
  font-size: 14px;
  line-height: 1.75;
}

/* LIGHTBOX */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 20000;
  padding: 30px;
  background: rgba(42, 18, 16, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox img {
  max-width: min(92vw, 980px);
  max-height: 78vh;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  transform: scale(0.88);
  transition: 0.4s ease;
}

.gallery-lightbox.active img {
  transform: scale(1);
}

.gallery-lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 24px;
  transition: 0.35s ease;
}

.gallery-lightbox-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.gallery-lightbox-text {
  position: absolute;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  width: min(90%, 720px);
  padding: 20px 26px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255, 247, 236, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
}

.gallery-lightbox-text span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.gallery-lightbox-text h3 {
  margin-top: 6px;
  font-family: var(--heading-font);
  color: var(--primary-dark);
  font-size: 34px;
  line-height: 1;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .gallery-topbar {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .chaahat-gallery-showcase {
    grid-template-columns: 1fr;
  }

  .showcase-main {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .showcase-row-two {
    grid-template-columns: 1fr;
  }

  .showcase-row-three {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .chaahat-gallery-section {
    padding: 82px 0;
  }

  .chaahat-gallery-container {
    padding: 0 18px;
  }

  .gallery-heading h2 {
    font-size: 42px;
  }

  .gallery-intro-card {
    padding: 20px;
    border-radius: 22px;
  }

  .chaahat-gallery-showcase,
  .showcase-right-column,
  .showcase-row-two,
  .showcase-row-three {
    gap: 18px;
  }

  .showcase-main {
    min-height: 320px;
  }

  .gallery-showcase-card {
    min-height: 240px;
    border-radius: 24px;
  }

  .gallery-feature-strip {
    padding: 20px;
    border-radius: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-strip-content h4 {
    font-size: 22px;
  }

  .showcase-overlay {
    opacity: 1;
    padding: 22px;
  }

  .showcase-overlay span,
  .showcase-overlay h3 {
    opacity: 1;
    transform: translateY(0);
  }

  .showcase-overlay h3 {
    font-size: 30px;
  }

  .showcase-plus-btn {
    width: 46px;
    height: 46px;
    right: 18px;
    bottom: 18px;
    transform: scale(1);
    opacity: 1;
  }

  .showcase-row-three {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox img {
    max-height: 70vh;
    border-radius: 22px;
  }

  .gallery-lightbox-close {
    top: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
  }

  .gallery-lightbox-text {
    bottom: 24px;
    padding: 16px 18px;
  }

  .gallery-lightbox-text h3 {
    font-size: 28px;
  }
}
/* =========================
   PREMIUM VISIT MAP SECTION
========================= */

.chaahat-visit-map-section {
  position: relative;
  padding: 125px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(214, 162, 74, 0.18), transparent 26%),
    radial-gradient(circle at 90% 70%, rgba(136, 24, 31, 0.26), transparent 30%),
    linear-gradient(135deg, #240d07 0%, #4a170d 52%, #250608 100%);
  overflow: hidden;
}

.visit-map-bg-text {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  font-family: var(--heading-font);
  font-size: clamp(90px, 15vw, 240px);
  font-weight: 700;
  color: rgba(255, 247, 236, 0.035);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.visit-map-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

/* HEADER */
.visit-map-header {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.visit-map-header .section-tag {
  color: var(--gold-light);
  justify-content: center;
}

.visit-map-header .section-tag::before {
  display: none;
}

.visit-map-header h2 {
  margin-top: 16px;
  font-family: var(--heading-font);
  font-size: clamp(44px, 5vw, 52px);
  line-height: 0.95;
  color: var(--cream);
}

.visit-map-header p {
  max-width: 680px;
  margin: 20px auto 0;
  color: #f8e7cf;
  font-size: 16px;
  line-height: 1.85;
}

/* MAP STAGE */
.visit-map-stage {
  position: relative;
  min-height: 660px;
}

/* MAP FRAME */
.visit-map-frame {
  position: absolute;
  inset: 45px 0 0 120px;
  border-radius: 46px;
  overflow: hidden;
  background: var(--cream);
  border: 14px solid rgba(255, 247, 236, 0.9);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.32);
}

.visit-map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(36, 13, 7, 0.22);
}

.visit-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(0.95) contrast(1.04);
}

/* MAIN FLOATING CARD */
.visit-floating-card {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 390px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 247, 236, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.visit-floating-card::after {
  /* content: ""; */
  position: absolute;
  right: -36px;
  bottom: 70px;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: var(--gold);
  transform: rotate(14deg);
  z-index: -1;
}

.visit-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 18px 35px rgba(136, 24, 31, 0.28);
}

.visit-floating-card > span {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.visit-floating-card h3 {
  margin-top: 10px;
  font-family: var(--heading-font);
  color: var(--primary-dark);
  font-size: 32px;
  line-height: 0.95;
}

.visit-floating-card p {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* MINI INFO */
.visit-mini-info {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.visit-mini-info div {
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(136, 24, 31, 0.07);
  color: #2a1210;
  display: flex;
  align-items: center;
  gap: 11px;
}

.visit-mini-info i {
  color: var(--primary);
}

.visit-mini-info span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

/* BUTTON */
.visit-direction-btn {
  position: relative;
  margin-top: 26px;
  min-height: 56px;
  padding: 15px 25px;
  border-radius: 50px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: 0.35s ease;
}

.visit-direction-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.36), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.visit-direction-btn:hover::before {
  left: 120%;
}

.visit-direction-btn:hover {
  background: var(--gold);
  transform: translateY(-4px);
}

.visit-direction-btn i {
  transition: 0.35s ease;
}

.visit-direction-btn:hover i {
  transform: translateX(6px);
}

/* SIDE FLOATING CARDS */
.visit-side-card {
  position: absolute;
  z-index: 6;
  padding: 16px 20px;
  border-radius: 50px;
  background: rgba(255, 247, 236, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: visitFloat 3s ease-in-out infinite;
}

.visit-side-card i {
  color: var(--primary);
}

.visit-side-card span {
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 900;
}

.visit-card-one {
  right: 70px;
  top: 25px;
}

.visit-card-two {
  right: 32px;
  bottom: 150px;
  animation-delay: 0.7s;
}

@keyframes visitFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ORDER BUBBLE */
.visit-order-bubble {
  position: absolute;
  right: 105px;
  bottom: 38px;
  z-index: 7;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #d19c45, var(--primary) 72%);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  line-height: 1.25;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 30px 70px rgba(136, 24, 31, 0.40);
  transition: 0.4s ease;
}

.visit-order-bubble i {
  margin-top: 8px;
  transition: 0.35s ease;
}

.visit-order-bubble:hover {
  transform: translateY(-10px) rotate(-4deg);
}

.visit-order-bubble:hover i {
  transform: translateX(6px);
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .visit-map-stage {
    min-height: auto;
    display: grid;
    gap: 24px;
  }

  .visit-floating-card,
  .visit-map-frame,
  .visit-side-card,
  .visit-order-bubble {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .visit-floating-card {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }

  .visit-floating-card::after {
    display: none;
  }

  .visit-map-frame {
    inset: auto;
    height: 520px;
  }

  .visit-side-card {
    width: fit-content;
    margin: 0 auto;
  }

  .visit-order-bubble {
    width: 100%;
    height: 58px;
    border-radius: 50px;
    flex-direction: row;
    gap: 8px;
    margin: 0 auto;
  }

  .visit-order-bubble i {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .chaahat-visit-map-section {
    padding: 82px 0;
  }

  .visit-map-container {
    padding: 0 18px;
  }

  .visit-map-header {
    margin-bottom: 36px;
  }

  .visit-map-header h2 {
    font-size: 42px;
  }

  .visit-map-header p {
    font-size: 15px;
  }

  .visit-floating-card {
    padding: 24px;
    border-radius: 28px;
  }

  .visit-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 22px;
  }

  .visit-floating-card h3 {
    font-size: 36px;
  }

  .visit-floating-card p {
    font-size: 14px;
  }

  .visit-direction-btn {
    width: 100%;
  }

  .visit-map-frame {
    height: 410px;
    border-radius: 28px;
    border-width: 8px;
  }

  .visit-side-card {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .visit-map-header h2 {
    font-size: 38px;
  }

  .visit-floating-card h3 {
    font-size: 32px;
  }

  .visit-map-frame {
    height: 370px;
  }
}
/* =========================
   FOOTER SECTION
========================= */

.chaahat-footer {
  position: relative;
  padding: 0 0 28px;
  background:
    radial-gradient(circle at top left, rgba(214, 162, 74, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(136, 24, 31, 0.22), transparent 30%),
    linear-gradient(135deg, #250608 0%, #351108 55%, #250608 100%);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.footer-glow-one {
  width: 340px;
  height: 340px;
  left: -150px;
  top: 120px;
  background: rgba(214, 162, 74, 0.14);
}

.footer-glow-two {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 50px;
  background: rgba(136, 24, 31, 0.20);
}

.chaahat-footer-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

/* FOOTER CTA */
.footer-cta-card {
  position: relative;
  top: -62px;
  margin-bottom: 10px;
  padding: 38px 42px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 247, 236, 0.96), rgba(255, 255, 255, 0.90));
  border: 1px solid rgba(255, 255, 255, 0.50);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
}

.footer-cta-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(214, 162, 74, 0.16);
}

.footer-cta-content {
  position: relative;
  z-index: 2;
}

.footer-cta-content span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-cta-content h2 {
  margin-top: 10px;
  font-family: var(--heading-font);
  color: var(--primary-dark);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
}

.footer-cta-content p {
  max-width: 660px;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.footer-cta-buttons {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-primary-btn,
.footer-secondary-btn {
  min-height: 54px;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.35s ease;
}

.footer-primary-btn {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 18px 36px rgba(136, 24, 31, 0.25);
}

.footer-primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.footer-primary-btn:hover::before {
  left: 120%;
}

.footer-primary-btn:hover {
  background: var(--gold);
  transform: translateY(-4px);
}

.footer-primary-btn i {
  transition: 0.35s ease;
}

.footer-primary-btn:hover i {
  transform: translateX(6px);
}

.footer-secondary-btn {
  color: var(--primary);
  border: 1px solid rgba(136, 24, 31, 0.22);
  background: transparent;
}

.footer-secondary-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}

/* FOOTER MAIN */
.footer-main-grid {
  padding: 35px 0 48px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: 42px;
}

.footer-brand-box p {
  margin-top: 22px;
  max-width: 380px;
  color: #f8e7cf;
  font-size: 15px;
  line-height: 1.85;
}

.footer-logo {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
}

.footer-logo span {
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.4px;
}

.footer-logo small {
  margin-top: 9px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

/* SOCIAL */
.footer-socials {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-socials a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 247, 236, 0.10);
  color: var(--gold-light);
  border: 1px solid rgba(255, 247, 236, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.35s ease;
}

.footer-socials a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-5px);
}

/* LINKS */
.footer-links-box h3,
.footer-contact-box h3 {
  position: relative;
  color: var(--cream);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 24px;
}

.footer-links-box h3::after,
.footer-contact-box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 42px;
  height: 2px;
  background: var(--gold-light);
}

.footer-links-box ul {
  list-style: none;
  display: grid;
  gap: 13px;
}

.footer-links-box ul li a {
  position: relative;
  color: #f8e7cf;
  text-decoration: none;
  font-size: 15px;
  transition: 0.35s ease;
}

.footer-links-box ul li a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--gold-light);
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
  transition: 0.35s ease;
}

.footer-links-box ul li a:hover {
  color: var(--gold-light);
}

.footer-links-box ul li a:hover::before {
  width: 18px;
  margin-right: 8px;
}

/* CONTACT */
.footer-contact-box {
  display: grid;
  align-content: start;
}

.footer-contact-item {
  margin-bottom: 16px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255, 247, 236, 0.08);
  border: 1px solid rgba(255, 247, 236, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.35s ease;
}

.footer-contact-item:hover {
  background: rgba(255, 247, 236, 0.13);
  transform: translateY(-5px);
}

.footer-contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(243, 210, 138, 0.14);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-item h4 {
  color: var(--cream);
  font-size: 14px;
  font-weight: 900;
}

.footer-contact-item p {
  margin-top: 4px;
  color: #f8e7cf;
  font-size: 13px;
  line-height: 1.4;
}

/* FOOTER BOTTOM */
.footer-bottom {
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 247, 236, 0.12);
  /* display: flex; */
  text-align: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #f8e7cf;
  font-size: 14px;
  line-height: 1.6;
}

/* RESPONSIVE FOOTER */
@media (max-width: 1050px) {
  .footer-cta-card {
    grid-template-columns: 1fr;
    top: -45px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .chaahat-footer {
    padding-bottom: 22px;
  }

  .chaahat-footer-container {
    padding: 0 18px;
  }

  .footer-cta-card {
    top: -32px;
    padding: 28px 22px;
    border-radius: 28px;
  }

  .footer-cta-content h2 {
    font-size: 38px;
  }

  .footer-primary-btn,
  .footer-secondary-btn {
    width: 100%;
  }

  .footer-main-grid {
    padding: 20px 0 36px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-logo span {
    font-size: 36px;
  }

  .footer-links-box h3,
  .footer-contact-box h3 {
    margin-bottom: 20px;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .footer-cta-content h2 {
    font-size: 34px;
  }

  .footer-logo span {
    font-size: 32px;
  }
}


/* =====================================================
   LOGO THEME + SAFE ALIGNMENT PATCH
   This patch intentionally changes only visual theme,
   not your section layout.
===================================================== */

.chaahat-logo span,
.chaahat-mobile-logo span,
.footer-logo span {
  font-family: var(--logo-font) !important;
  font-weight: 400 !important;
}

.chaahat-logo span,
.chaahat-mobile-logo span {
  color: var(--primary) !important;
  font-size: 40px;
  line-height: 0.9;
}

.chaahat-logo small,
.chaahat-mobile-logo small {
  color: var(--primary) !important;
  font-weight: 800;
  letter-spacing: 4.6px;
}

.footer-logo span {
  color: var(--white) !important;
}

.footer-logo small {
  color: var(--cream) !important;
}

/* Keep header balanced after decorative logo font */
.chaahat-header,
.chaahat-navbar {
  min-height: 88px;
}

.chaahat-navbar {
  align-items: center;
}

/* Consistent logo colors from supplied logo */
.chaahat-order-btn,
.mobile-order-btn,
.primary-btn,
.about-primary-btn,
.menu-tab:hover,
.menu-tab.active,
.visit-direction-btn,
.footer-primary-btn,
.gallery-explore-btn {
  background: var(--primary);
}

.chaahat-order-btn:hover,
.mobile-order-btn:hover,
.primary-btn:hover,
.about-primary-btn:hover,
.menu-order-link:hover,
.book-table-btn:hover,
.visit-direction-btn:hover,
.footer-primary-btn:hover,
.gallery-explore-btn:hover {
  background: var(--primary-dark);
}

.chaahat-toggle,
.chaahat-close,
.menu-order-link,
.book-table-btn,
.showcase-plus-btn,
.gallery-lightbox-close {
  background: var(--primary);
}

.chaahat-toggle:hover,
.chaahat-close:hover,
.showcase-plus-btn:hover,
.gallery-lightbox-close:hover {
  background: var(--primary-dark);
}

.section-tag,
.chaahat-logo small,
.chaahat-mobile-logo small,
.hero-subtitle,
.featured-menu-text span,
.book-card-content > span,
.booking-card-header span,
.visit-floating-card > span,
.footer-cta-content span,
.gallery-lightbox-text span {
  color: var(--gold);
}

.hero-subtitle::before,
.section-tag::before,
.footer-links-box h3::after,
.footer-contact-box h3::after {
  background: var(--gold);
}

/* Safer card spacing without changing grid logic */
.about-feature-box,
.premium-food-item,
.reservation-feature-box,
.footer-contact-item {
  align-items: center;
}

.booking-iframe-box iframe {
  width: 100%;
}

/* Mobile: keep the logo compact and prevent header overflow */
@media (max-width: 576px) {
  .chaahat-header,
  .chaahat-navbar {
    min-height: 76px;
  }

  .chaahat-logo span,
  .chaahat-mobile-logo span {
    font-size: 30px;
  }

  .chaahat-logo small,
  .chaahat-mobile-logo small {
    font-size: 9px;
    letter-spacing: 3px;
    margin-top: 6px;
  }
}

/* =====================================================
   FINAL FONT FIX - LOGO FONT FOR HEADINGS
   Headings use the same decorative font as the Chaahat logo.
   Paragraphs use the same clean font style as the "Indian Cuisine" logo text.
===================================================== */
:root {
  --logo-font: 'Berkshire Swash', cursive;
  --heading-font: 'Berkshire Swash', cursive;
  --paragraph-font: 'Poppins', sans-serif;
}

/* Main logo text */
.chaahat-logo span,
.chaahat-mobile-logo span,
.footer-logo span {
  font-family: var(--logo-font) !important;
  font-weight: 400 !important;
}

/* "Indian Cuisine" logo text style */
.chaahat-logo small,
.chaahat-mobile-logo small,
.footer-logo small {
  font-family: var(--paragraph-font) !important;
  font-weight: 800 !important;
}

/* All website headings */
h1,
h2,
h3,
h4,
.hero-content h1,
.about-content-area h2,
.about-experience-card h3,
.about-feature-box h4,
.menu-section-head h2,
.menu-category-card h3,
.featured-menu-text h3,
.premium-food-item h4,
.book-card-content h3,
.reservation-left-content h2,
.booking-card-header h3,
.gallery-heading h2,
.showcase-overlay h3,
.feature-strip-content h4,
.visit-map-header h2,
.visit-floating-card h3,
.footer-cta-content h2,
.footer-links-box h3,
.footer-contact-box h3,
.footer-contact-item h4 {
  font-family: var(--heading-font) !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px;
}

/* Paragraphs and normal text - same family as "Indian Cuisine" */
body,
p,
.hero-content p,
.about-content-area p,
.menu-section-head p,
.featured-menu-text p,
.premium-food-item p,
.book-card-content p,
.reservation-left-content p,
.booking-card-header p,
.gallery-intro-card p,
.feature-strip-content p,
.visit-map-header p,
.visit-floating-card p,
.footer-cta-content p,
.footer-brand-box p,
.footer-contact-item p,
.mobile-menu-bottom p {
  font-family: var(--paragraph-font) !important;
}

/* Keep buttons and nav clean/readable */
.chaahat-desktop-menu li a,
.chaahat-mobile-links li a,
.chaahat-order-btn,
.mobile-order-btn,
.hero-btn,
.about-primary-btn,
.about-secondary-btn,
.menu-tab,
.menu-order-link,
.book-table-btn,
.visit-direction-btn,
.footer-primary-btn,
.footer-secondary-btn,
.gallery-explore-btn {
  font-family: var(--paragraph-font) !important;
}


a.chaahat-logo img {
    width: 75%;
}

a {
    color: #2a1210;
    text-decoration: none;
}

.footer-bottom p a {
    color: #ebe7cf;
}
/* GIFT CARD SECTION START */

.chaahat-gift-section {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;
  background:
    radial-gradient(circle at top left, rgba(194, 142, 63, 0.18), transparent 35%),
    radial-gradient(circle at bottom right, rgba(142, 24, 31, 0.26), transparent 38%),
    linear-gradient(135deg, #090605 0%, #1b0d0a 48%, #090605 100%);
  color: #fff;
}

.gift-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,0.18) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.18) 25%, transparent 25%);
  background-size: 42px 42px;
  pointer-events: none;
}

.chaahat-gift-container {
  position: relative;
  z-index: 2;
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 55px;
}

.gift-card-content .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(214, 170, 94, 0.45);
  border-radius: 50px;
  color: #d6aa5e;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gift-card-content h2 {
  margin: 20px 0 18px;
  font-family: 'Becker', Georgia, serif;
  font-size: clamp(42px, 5vw, 54px);
  line-height: 0.95;
  font-weight: 400;
  color: #fff6e8;
}

.gift-card-content p {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.8;
}

.gift-card-features {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}

.gift-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.gift-feature i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #14100b;
  background: linear-gradient(135deg, #f5d38c, #b88334);
  box-shadow: 0 10px 25px rgba(184, 131, 52, 0.25);
}

.gift-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 28px;
  border-radius: 50px;
  color: #160b07;
  background: linear-gradient(135deg, #f7d98c, #c9923e);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(201, 146, 62, 0.32);
  transition: 0.35s ease;
}

.gift-card-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(201, 146, 62, 0.48);
}

.gift-card-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.gift-card-box {
  width: min(470px, 100%);
  min-height: 285px;
  padding: 30px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(142, 24, 31, 0.95), rgba(35, 12, 10, 0.98)),
    radial-gradient(circle at top right, rgba(255, 221, 146, 0.45), transparent 35%);
  border: 1px solid rgba(255, 214, 139, 0.35);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(-4deg);
  transition: 0.4s ease;
}

.gift-card-box:hover {
  transform: rotate(0deg) translateY(-8px);
}

.gift-card-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255, 219, 143, 0.16);
}

.gift-card-box::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px dashed rgba(255, 226, 163, 0.38);
  pointer-events: none;
}

.gift-card-top,
.gift-card-main,
.gift-card-bottom {
  position: relative;
  z-index: 2;
}

.gift-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffe7ad;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.gift-card-top i {
  font-size: 30px;
}

.gift-card-main {
  margin: 46px 0 38px;
}

.gift-card-main h3 {
  margin: 0;
  font-family: 'Becker', Georgia, serif;
  font-size: clamp(48px, 6vw, 74px);
  line-height: 0.9;
  font-weight: 400;
  color: #fff;
}

.gift-card-main p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gift-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.gift-card-bottom strong {
  color: #ffe4a7;
  white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .chaahat-gift-section {
    padding: 80px 18px;
  }

  .chaahat-gift-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .gift-card-content {
    text-align: center;
  }

  .gift-card-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .gift-feature {
    justify-content: center;
  }

  .gift-card-box {
    transform: rotate(0deg);
  }
}

@media (max-width: 520px) {
  .gift-card-content h2 {
    font-size: 42px;
  }

  .gift-card-content p {
    font-size: 15px;
  }

  .gift-card-box {
    min-height: 245px;
    padding: 24px;
    border-radius: 22px;
  }

  .gift-card-main {
    margin: 36px 0 30px;
  }

  .gift-card-main h3 {
    font-size: 46px;
  }

  .gift-card-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* GIFT CARD SECTION END */

/* =====================================================
   BLACK COLOR THEME ONLY PATCH
   Only colors, backgrounds, borders, and shadows are overridden.
   No typography, layout, spacing, or HTML changes.
===================================================== */
:root {
  --primary: #D6A24A;
  --primary-dark: #050505;
  --primary-light: #B98738;
  --cream: #080808;
  --cream-light: #111111;
  --white: #FFFFFF;
  --gold: #D6A24A;
  --gold-light: #F4D58A;
  --text-dark: #F7F0E4;
  --text-muted: #BFAF95;
}

body {
  background: #050505;
  color: var(--text-dark);
}

a {
  color: var(--gold-light);
}

/* Header */
.chaahat-header {
  background: rgba(0, 0, 0, 0.96);
  border-bottom: 1px solid rgba(214, 162, 74, 0.26);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.chaahat-logo span,
.chaahat-mobile-logo span {
  color: #FFFFFF !important;
}

.chaahat-logo small,
.chaahat-mobile-logo small {
  color: var(--gold-light) !important;
}

.chaahat-desktop-menu li a {
  color: #F7F0E4;
}

.chaahat-desktop-menu li a:hover,
.chaahat-desktop-menu li a.active {
  color: var(--gold-light);
}

.chaahat-desktop-menu li a::after {
  background: var(--gold-light);
}

/* Gold action buttons */
.chaahat-order-btn,
.mobile-order-btn,
.primary-btn,
.about-primary-btn,
.menu-order-link,
.book-table-btn,
.visit-direction-btn,
.footer-primary-btn,
.gallery-explore-btn,
.gift-card-btn,
.chaahat-toggle,
.chaahat-close,
.showcase-plus-btn,
.gallery-lightbox-close {
  background: linear-gradient(135deg, #F4D58A 0%, #D6A24A 48%, #A87527 100%);
  color: #090909;
  box-shadow: 0 18px 38px rgba(214, 162, 74, 0.28);
}

.chaahat-order-btn:hover,
.mobile-order-btn:hover,
.primary-btn:hover,
.about-primary-btn:hover,
.menu-order-link:hover,
.book-table-btn:hover,
.visit-direction-btn:hover,
.footer-primary-btn:hover,
.gallery-explore-btn:hover,
.gift-card-btn:hover,
.chaahat-toggle:hover,
.chaahat-close:hover,
.showcase-plus-btn:hover,
.gallery-lightbox-close:hover {
  background: #FFFFFF;
  color: #050505;
  box-shadow: 0 22px 48px rgba(255, 255, 255, 0.18);
}

.secondary-btn,
.about-secondary-btn,
.footer-secondary-btn {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(214, 162, 74, 0.38);
}

.secondary-btn:hover,
.about-secondary-btn:hover,
.footer-secondary-btn:hover {
  background: var(--gold);
  color: #050505;
  border-color: var(--gold);
}

/* Mobile menu */
.chaahat-menu-overlay {
  background: rgba(0, 0, 0, 0.76);
}

.chaahat-mobile-menu {
  background:
    radial-gradient(circle at top right, rgba(214, 162, 74, 0.16), transparent 35%),
    linear-gradient(180deg, #0B0B0B 0%, #151515 100%);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.55);
}

.mobile-menu-line {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.chaahat-mobile-links li a {
  color: #F7F0E4;
}

.chaahat-mobile-links li a:hover,
.chaahat-mobile-links li a.active {
  color: var(--gold-light);
}

.chaahat-mobile-links li a::before {
  background: var(--gold-light);
}

.mobile-menu-bottom {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(214, 162, 74, 0.20);
}

.mobile-menu-bottom p {
  color: var(--text-muted);
}

/* Main dark section backgrounds */
.chaahat-about-section,
.chaahat-menu-section,
.chaahat-gallery-section {
  background:
    radial-gradient(circle at top left, rgba(214, 162, 74, 0.13), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(180deg, #050505 0%, #101010 52%, #050505 100%);
}

.chaahat-reservation-section,
.chaahat-visit-map-section,
.chaahat-footer,
.chaahat-gift-section {
  background:
    radial-gradient(circle at top left, rgba(214, 162, 74, 0.17), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(135deg, #000000 0%, #111111 50%, #050505 100%);
}

/* Hero */
.chaahat-hero-slider {
  background: #000000;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 75% 40%, rgba(214, 162, 74, 0.26), transparent 32%);
}

.hero-content h1,
.about-content-area h2,
.menu-section-head h2,
.menu-category-card h3,
.featured-menu-text h3,
.premium-food-item h4,
.book-card-content h3,
.reservation-left-content h2,
.booking-card-header h3,
.gallery-heading h2,
.showcase-overlay h3,
.feature-strip-content h4,
.visit-map-header h2,
.visit-floating-card h3,
.footer-cta-content h2,
.footer-links-box h3,
.footer-contact-box h3,
.footer-contact-item h4,
.gift-card-content h2,
.gift-card-main h3 {
  color: #FFF3DC;
}

.hero-content p,
.about-content-area p,
.menu-section-head p,
.featured-menu-text p,
.premium-food-item p,
.book-card-content p,
.reservation-left-content p,
.booking-card-header p,
.gallery-intro-card p,
.feature-strip-content p,
.visit-map-header p,
.visit-floating-card p,
.footer-cta-content p,
.footer-brand-box p,
.footer-contact-item p,
.gift-card-content p,
.gift-card-main p,
.gift-card-bottom,
.footer-bottom p {
  color: var(--text-muted);
}

.hero-subtitle,
.section-tag,
.menu-category-card > span,
.featured-menu-text span,
.premium-food-item span,
.book-card-content > span,
.booking-card-header span,
.visit-floating-card > span,
.footer-cta-content span,
.gallery-lightbox-text span,
.gift-card-content .section-tag,
.gift-card-top,
.gift-card-bottom strong {
  color: var(--gold-light);
}

.hero-subtitle::before,
.section-tag::before,
.footer-links-box h3::after,
.footer-contact-box h3::after {
  background: var(--gold-light);
}

.hero-btn.secondary-btn {
  color: #F7F0E4;
  border-color: rgba(214, 162, 74, 0.42);
  background: rgba(255, 255, 255, 0.06);
}

.hero-btn.secondary-btn:hover {
  background: var(--gold-light);
  color: #050505;
}

.food-info-badge,
.floating-tag {
  background: rgba(12, 12, 12, 0.90);
  border: 1px solid rgba(214, 162, 74, 0.22);
  color: #F7F0E4;
}

.food-info-badge h4,
.floating-tag span {
  color: #FFF3DC;
}

.floating-tag i,
.food-info-badge span {
  color: var(--gold-light);
}

.hero-dots button {
  background: rgba(255, 255, 255, 0.34);
}

.hero-dots button.active,
.hero-progress span {
  background: var(--gold-light);
}

/* Dark cards and panels */
.about-main-image,
.about-small-image,
.featured-menu-card,
.premium-book-card,
.gallery-showcase-card,
.visit-map-frame {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.58);
}

.about-small-image {
  border-color: #050505;
}

.about-experience-card,
.about-feature-box,
.menu-category-card,
.menu-tab,
.premium-food-item,
.reservation-booking-card,
.gallery-intro-card,
.gallery-feature-strip,
.visit-floating-card,
.visit-side-card,
.footer-cta-card,
.gift-card-box {
  background: rgba(17, 17, 17, 0.94);
  border: 1px solid rgba(214, 162, 74, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.menu-category-card,
.reservation-booking-card,
.gallery-intro-card,
.gallery-feature-strip,
.visit-floating-card,
.footer-cta-card {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.about-feature-box:hover,
.premium-food-item:hover,
.gallery-intro-card:hover,
.reservation-feature-box:hover,
.footer-contact-item:hover {
  box-shadow: 0 28px 70px rgba(214, 162, 74, 0.13);
}

.about-experience-card h3,
.about-feature-box h4,
.menu-tab,
.visit-mini-info span,
.visit-side-card span {
  color: #FFF3DC;
}

.about-feature-box span,
.about-experience-card span,
.visit-mini-info div,
.visit-side-card span {
  color: var(--text-muted);
}

.feature-icon,
.menu-tab i,
.reservation-feature-icon,
.footer-contact-icon,
.feature-strip-icon,
.visit-card-icon {
  background: rgba(214, 162, 74, 0.14);
  color: var(--gold-light);
}

.menu-tab:hover,
.menu-tab.active {
  background: linear-gradient(135deg, #F4D58A 0%, #D6A24A 100%);
  color: #050505;
  box-shadow: 0 18px 38px rgba(214, 162, 74, 0.26);
}

.menu-tab:hover i,
.menu-tab.active i {
  background: rgba(0, 0, 0, 0.12);
  color: #050505;
}

.premium-food-item::before,
.shape-one,
.shape-two,
.gallery-decor-one,
.gallery-decor-two,
.about-bg-pattern,
.about-bg-pattern::before,
.reservation-shape-one,
.reservation-shape-two,
.footer-glow-one,
.footer-glow-two {
  background: rgba(214, 162, 74, 0.10);
}

.featured-menu-img::after,
.book-card-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.24)),
    radial-gradient(circle at right, rgba(214, 162, 74, 0.20), transparent 35%);
}

.showcase-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.84) 100%);
}

.reservation-feature-box,
.book-card-features div,
.footer-contact-item,
.footer-socials a {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(214, 162, 74, 0.16);
}

.reservation-feature-box h4,
.book-card-features span,
.footer-logo span,
.footer-links-box h3,
.footer-contact-box h3,
.footer-contact-item h4 {
  color: #FFF3DC;
}

.reservation-feature-box span,
.book-card-features div,
.footer-links-box ul li a,
.footer-contact-item p,
.footer-logo small {
  color: var(--text-muted);
}

.booking-iframe-box {
  background: #111111;
  border-color: rgba(214, 162, 74, 0.18);
}

.visit-map-frame {
  background: #111111;
  border-color: rgba(214, 162, 74, 0.36);
}

.visit-mini-info div {
  background: rgba(255, 255, 255, 0.055);
}

.visit-order-bubble {
  background: radial-gradient(circle at 30% 25%, #F4D58A, #D6A24A 72%);
  color: #050505;
  box-shadow: 0 30px 70px rgba(214, 162, 74, 0.24);
}

/* Footer */
.footer-socials a {
  color: var(--gold-light);
}

.footer-socials a:hover {
  background: var(--gold-light);
  color: #050505;
}

.footer-bottom {
  border-top-color: rgba(214, 162, 74, 0.16);
}

.footer-bottom p a {
  color: var(--gold-light);
}

/* Gallery lightbox */
.gallery-lightbox {
  background: rgba(0, 0, 0, 0.94);
}

.gallery-lightbox img {
  border-color: rgba(214, 162, 74, 0.25);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.gallery-lightbox-text h3 {
  color: #FFF3DC;
}

/* Gift card */
.gift-pattern {
  opacity: 0.06;
}

.gift-card-box {
  background:
    radial-gradient(circle at top right, rgba(214, 162, 74, 0.18), transparent 38%),
    linear-gradient(135deg, #050505 0%, #181818 100%);
}

.gift-card-box::after {
  border-color: rgba(214, 162, 74, 0.34);
}

.gift-feature i {
  background: linear-gradient(135deg, #F4D58A, #D6A24A);
  color: #050505;
}

.gift-feature span {
  color: #F7F0E4;
}

