:root {
  /* Aadab Brand Palette */
  --gold: #b79653;       /* Primary gold */
  --gold-soft: #b58732;  /* Secondary mustard (for gradients/hover) */

  --bg-dark: #101814;    /* Primary dark (deep green/ink) */
  --bg-black: #0b0f0c;   /* Page background (near-black) */

  --text: #f5f0e6;       /* Main text */
  --text-muted: #9d947d; /* Primary grey */

  --copper: #80553d;     /* Primary brown/copper */
  --brown: #31251f;      /* Secondary deep brown */
  --maroon: #62191e;     /* Accent maroon */
  --green: #244928;      /* Accent green */

  --radius-lg: 1.25rem;

  /* Typography */
  --font-heading: "Grand Cru", "Playfair Display", serif;
  --font-body: "Neue Haas Grotesk Display Pro", "Inter", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-arabic: "Noto Naskh Arabic", serif;
}

/* GLOBAL */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--text);
}

/* NAVBAR */
.logo-text {
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.text-muted {
  color: var(--text-muted) !important;
}

.navbar {
  backdrop-filter: blur(16px);
  background-color: rgba(16, 24, 20, 0.92) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar .nav-link {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--gold) !important;
}

/* BUTTONS */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border: none;
  color: #111;
}

.btn-gold:hover {
  filter: brightness(0.95);
  color: #111;
}

.btn-outline-gold {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline-gold:hover {
  background-color: var(--gold);
  color: #111;
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.4)
  );
  z-index: 1;
}

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

.hero-title {
  font-family: var(--font-heading);
}

.hero-subtitle {
  max-width: 700px;
  margin-inline: auto;
}

.letter-spacing {
  letter-spacing: 0.28em;
}

/* FEATURE CARDS */
.feature-card {
  padding: 1.25rem;
  background: radial-gradient(circle at top left, rgba(183, 150, 83, 0.12), rgba(0, 0, 0, 0.35));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* SOCIAL THUMBS */
.social-thumb {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #444, #111);
}

/* FORMS */
.form-control-dark {
  background-color: #111;
  border-color: #333;
  color: #fff;
}

.form-control-dark:focus {
  background-color: #111;
  color: #fff;
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--gold);
}

.footer-logo {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ABOUT SECTION */
.bg-deep {
  background-color: var(--bg-dark);
}

.about-section p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-title {
  font-family: var(--font-heading);
  letter-spacing: 0.08em;
}

.about-img-tall {
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}

/* Collage style (middle row) */
.about-collage {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
  padding-bottom: 140px; /* creates space for overlay image */
}

.about-collage-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 1rem;
}


.about-collage-overlay {
  position: absolute;
  right: -6%;
  bottom: 0;
  width: 62%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

/* Reveal area (bottom about section) */
.about-reveal-area {
  padding-bottom: 6rem;
}

/* Text blocks in reveal section */
.about-copy-block {
  margin-bottom: 4rem;
  max-width: 540px;
}

.about-copy-block:last-child {
  margin-bottom: 0;
}

/* Sticky reveal image on the right */
.about-sticky-img {
  min-height: 790px; 
  position: sticky;
  top: 120px;
  height: 60vh;
  overflow: hidden;
  border-radius: 1.8rem;
}

.about-sticky-img img {
  width: 100%;
  height: 140%;
  object-fit: cover;
  transform: translateY(40%);  /* JS will animate this */
  will-change: transform;
}

/* Helper for larger spacing */
.mb-6 {
  margin-bottom: 5rem !important;
}

/* RESPONSIVE UTILITIES */
@media (min-width: 992px) {
  .py-md-6 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
}

/* Mobile tweaks */
@media (max-width: 991.98px) {
  .about-collage-overlay {
    right: -4%;
    bottom: -14%;
  }

  .about-copy-block {
    margin-bottom: 2.5rem;
  }

  .about-sticky-img {
    position: relative;
    height: auto;
    margin-top: 2rem;
  }

  .about-sticky-img img {
    height: auto;
    transform: translateY(0);
  }
}


/* Fixed navbar spacing for inner pages */
.has-fixed-nav main {
  padding-top: 90px; /* keeps content below fixed navbar */
}

@media (max-width: 991.98px) {
  .has-fixed-nav main {
    padding-top: 80px;
  }
}

/* =========================
   RESERVE SECTION (PREMIUM)
   Add at END of styles.css
   ========================= */

#reserve {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Left text column spacing */
#reserve .section-title {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.02em;
}

#reserve .text-muted {
  opacity: 0.85;
}

/* Contact list clean look */
#reserve ul.list-unstyled li {
  padding: 0.25rem 0;
  opacity: 0.9;
}

/* Primary CTA button sizing */
#reserve .btn.btn-gold {
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Right card styling (matches your feature-card but more premium) */
#reserve .feature-card {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top left, rgba(255,255,255,0.06), rgba(0,0,0,0.2));
  backdrop-filter: blur(10px);
}

/* Right card button */
#reserve .btn.btn-outline-gold {
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Better spacing on mobile */
@media (max-width: 991.98px) {
  #reserve {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  #reserve .feature-card {
    padding: 1.5rem;
  }
}

#online-catering .feature-card,
.feature-card h5 {
  line-height: 1.3;
}

.feature-card .bi-check-circle-fill {
  color: var(--gold-soft);
}

.heritage-section {
  background:
    linear-gradient(rgba(7, 7, 7, 0.95), rgba(7, 7, 7, 0.95)),
    url('images/pattern-bg.jpg') center/cover no-repeat;
  color: #f5efe4;
}

.section-header .section-tag {
  display: inline-block;
  color: #d4af37;
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.section-header p {
  max-width: 760px;
  margin: 0 auto;
  color: #ddd2bf;
  line-height: 1.8;
}

.video-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.video-card iframe {
  border-radius: 16px;
}

.heritage-content {
  padding: 12px 8px;
}

.heritage-label {
  display: inline-block;
  color: #d4af37;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 600;
}

.heritage-content h3 {
  color: #f8d77b;
  font-size: 2rem;
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
}

.heritage-content p {
  color: #e7dcc7;
  line-height: 1.9;
  font-size: 1.02rem;
  margin-bottom: 14px;
}

.heritage-row {
  padding: 22px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.heritage-row:last-child {
  border-bottom: none;
}

@media (max-width: 991px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .heritage-content h3 {
    font-size: 1.6rem;
  }
}
/* =========================
   FANCY MENU PAGE UPGRADE
   ========================= */

.inner-hero {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(rgba(5, 5, 5, 0.70), rgba(5, 5, 5, 0.82)),
    url("../images/menu-hero.jpg") center center / cover no-repeat;
  border-bottom: 1px solid rgba(183, 150, 83, 0.15);
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(183, 150, 83, 0.10), transparent 55%);
  pointer-events: none;
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.menu-page-bg {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 8, 8, 0.86), rgba(8, 8, 8, 0.92)),
    url("../images/menu-bg-main.jpg") center center / cover fixed no-repeat;
}

.menu-page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(183, 150, 83, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(128, 85, 61, 0.10), transparent 35%);
  pointer-events: none;
  z-index: 0;
}

.menu-page-bg > .container {
  position: relative;
  z-index: 1;
}

/* Tabs */
.menu-tabs .nav-link {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(183, 150, 83, 0.16);
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  margin: 0 0.35rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

.menu-tabs .nav-link:hover,
.menu-tabs .nav-link.active {
  background: linear-gradient(135deg, rgba(183, 150, 83, 0.95), rgba(181, 135, 50, 0.95));
  color: #111;
  border-color: rgba(183, 150, 83, 0.55);
  box-shadow: 0 10px 30px rgba(183, 150, 83, 0.22);
}

/* Section container */
.menu-section-bg {
  position: relative;
  padding: 2.2rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(183, 150, 83, 0.12);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.menu-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8, 8, 8, 0.82), rgba(8, 8, 8, 0.88));
  z-index: 0;
}

.menu-section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(183, 150, 83, 0.13), transparent 28%);
  z-index: 0;
  pointer-events: none;
}

.menu-section-bg > * {
  position: relative;
  z-index: 1;
}

/* Section title */
.menu-section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #f3d18b;
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}

.menu-subtitle {
  color: #dbc28f;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-note {
  color: rgba(245, 240, 230, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

/* Fancy cards */
.menu-card {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 1.15rem 1.1rem;
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 150, 83, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.menu-item-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff5df;
  line-height: 1.45;
}

.menu-price {
  color: #f3d18b;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.menu-item-desc {
  color: rgba(245, 240, 230, 0.72);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 0.75rem;
}

/* Different section photos */
.soups-bg {
  background-image: url("../images/5.jpg");
}

.appetizers-bg {
  background-image: url("../images/menu-appetizers.jpg");
}

.tandoor-bg {
  background-image: url("../images/6.jpg");
}

.veg-curry-bg {
  background-image: url("../images/menu-veg-curry.jpg");
}

.nonveg-curry-bg {
  background-image: url("../images/menu-nonveg-curry.jpg");
}

.biryani-bg {
  background-image: url("../images/8.jpg");
}

.mandi-bg {
  background-image: url("../images/4.jpg");
  border: 1px solid rgba(183, 150, 83, 0.25);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.hakka-bg {
  background-image: url("../images/menu-hakka.jpg");
}

.noodles-bg {
  background-image: url("../images/menu-noodles.jpg");
}

.breads-bg {
  background-image: url("../images/menu-breads.jpg");
}

.extras-bg {
  background-image: url("../images/menu-extras.jpg");
}

.cafe-bg {
  background-image: url("../images/menu-cafe.jpg");
}

.dessert-bg {
  background-image: url("../images/10.jpg");
}

.drinks-bg {
  background-image: url("../images/menu-drinks.jpg");
}

/* Footer note */
.tab-content + p,
.menu-page-bg .small.text-muted {
  color: rgba(245, 240, 230, 0.62) !important;
}

/* Mobile */
@media (max-width: 991.98px) {
  .menu-section-bg {
    padding: 1.4rem;
    border-radius: 22px;
  }

  .menu-section-title {
    font-size: 1.55rem;
  }

  .menu-item-header {
    flex-direction: column;
    gap: 0.35rem;
  }

  .menu-price {
    white-space: normal;
  }

  .menu-tabs .nav-link {
    padding: 0.65rem 1rem;
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
  }
}


/* =========================
   HOME PAGE IMAGE ALIGNMENT FIX
   ========================= */

/* Featured cards equal height */
.feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Featured section images aligned */
.feature-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 1rem;
}

/* Keep text aligned nicely inside cards */
.feature-card h3,
.feature-card .h5 {
  margin-top: 0.25rem;
}

.feature-card p {
  margin-bottom: 0;
}

/* Optional hover polish */
.feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

/* About top images */
.about-img-tall {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* About collage images */
.about-collage-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-collage-overlay {
  width: 62%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Sticky image section */
.about-sticky-img {
  min-height: 620px;
}

.about-sticky-img img {
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Reserve section card consistency */
#reserve .feature-card {
  height: 100%;
  justify-content: center;
}

/* Better tablet layout */
@media (max-width: 991.98px) {
  .feature-card img {
    height: 280px;
  }

  .about-img-tall {
    height: 320px;
  }

  .about-collage-main {
    height: 380px;
  }

  .about-collage-overlay {
    height: 180px;
  }

  .about-sticky-img {
    min-height: auto;
  }
}

/* Better mobile layout */
@media (max-width: 575.98px) {
  .feature-card img {
    height: 240px;
  }

  .about-img-tall {
    height: 260px;
  }

  .about-collage-main {
    height: 300px;
  }

  .about-collage-overlay {
    width: 58%;
    height: 150px;
    right: -2%;
    bottom: -10%;
  }
}

.site-logo{
  height:42px;
  width:auto;
  object-fit:contain;
  display:block;
}

/* navbar alignment */
.navbar-brand{
  padding:0;
}

/* slightly bigger on desktop */
@media (min-width:992px){
  .site-logo{
    height:46px;
  }
}

.site-logo{
  height:42px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}


/* =========================
   MOBILE FIXES – REMOVE SIDE SCROLL / GAPS
   Paste at END of styles.css
   ========================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
  display: block;
}

/* Prevent containers from causing overflow */
.container,
.container-fluid,
section,
header,
footer,
main {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix bootstrap row overflow */
.row {
  margin-left: 0;
  margin-right: 0;
}

/* =========================
   TABLET / MOBILE FIXES
   ========================= */
@media (max-width: 991.98px) {

  .navbar .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .navbar-collapse {
    padding-top: 0.75rem;
  }

  .navbar .nav-link {
    padding: 0.65rem 0;
  }

  .has-fixed-nav main {
    padding-top: 80px;
  }

  /* Remove fixed background issues */
  .menu-page-bg {
    background-attachment: scroll !important;
    background-position: center center !important;
  }

  /* Feature cards */
  .feature-card {
    padding: 1rem;
  }

  .feature-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
  }

  /* About top image */
  .about-img-tall {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
  }

  /* About collage */
  .about-collage {
    max-width: 100%;
    padding-bottom: 90px;
    overflow: visible;
  }

  .about-collage-main {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
  }

  .about-collage-overlay {
    width: 58%;
    height: 180px;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
  }

  /* Sticky image becomes normal image */
  .about-sticky-img {
    position: relative;
    top: auto;
    min-height: auto;
    height: auto;
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 1.5rem;
  }

  .about-sticky-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  /* Reserve section */
  #reserve {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  #reserve .feature-card {
    padding: 1.5rem;
  }

  /* Menu page */
  .menu-section-bg {
    padding: 1.4rem;
    border-radius: 22px;
  }

  .menu-section-title {
    font-size: 1.55rem;
  }

  .menu-item-header {
    flex-direction: column;
    gap: 0.35rem;
  }

  .menu-price {
    white-space: normal;
  }

  .menu-tabs .nav-link {
    padding: 0.65rem 1rem;
    font-size: 0.72rem;
    margin-bottom: 0.5rem;
  }

}

/* =========================
   MOBILE ONLY
   ========================= */
@media (max-width: 575.98px) {

  .hero-section {
    min-height: 88vh;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .letter-spacing {
    letter-spacing: 0.16em;
  }

  .has-fixed-nav main {
    padding-top: 76px;
  }

  .inner-hero {
    min-height: 220px;
    padding: 2rem 0;
  }

  /* Feature cards */
  .feature-card img {
    height: 220px;
  }

  /* About images */
  .about-img-tall {
    height: 260px;
  }

  .about-collage {
    padding-bottom: 70px;
  }

  .about-collage-main {
    height: 300px;
  }

  .about-collage-overlay {
    width: 50%;
    height: 120px;
    right: 0;
    bottom: 0;
  }

  .about-sticky-img img {
    height: 250px;
  }

  /* Menu cards */
  .menu-section-bg {
    padding: 1rem;
    border-radius: 18px;
  }

  .menu-item-title {
    font-size: 1rem;
  }

  .menu-price {
    font-size: 0.9rem;
    word-break: break-word;
  }

  .menu-tabs {
    row-gap: 0.5rem;
  }

  .menu-tabs .nav-link {
    min-width: 120px;
    text-align: center;
  }

  /* Reserve */
  #reserve {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  #reserve .feature-card {
    padding: 1.2rem;
  }

  /* Footer */
  .footer .list-inline-item {
    margin-bottom: 0.4rem;
  }

}