/* ═══════════════════════════════════════════════════════════
   DHABA LAAL MIRCH — HOME PAGE CSS  v2
   Aesthetic: Premium minimalist, earthy light canvas
   Base: --dcanvas (#F5F0E6) | Accents: --dgreen, --dred
   Desktop only — media queries to be added later
═══════════════════════════════════════════════════════════ */

html, body { overflow-x: hidden; }

body.dhaba-site {
  background: var(--dcanvas);
  color: var(--fg);
}

/* ── Shared helpers ── */
.dhaba-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--dred);
  display: block;
}
.dhaba-section-headline {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.dhaba-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dred);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}
.dhaba-link:hover { gap: 10px; }

/* Spice dots */
.spice-dot-rating {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(147,37,51,0.15);
  display: inline-block;
  transition: background var(--transition-fast);
  cursor: default;
}
.spice-dot-rating.active { background: var(--dred); }



/* ── HERO — Light editorial, image right ── */
#dhaba-hero {
  margin-top: 72px; /* navbar height */
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  background: var(--dcanvas);
}
.dhaba-hero-bg { display: none; } /* not used in new layout */
.dhaba-hero-flame-overlay { display: none; }

/* Hero left: text */
.dhaba-hero-content {
  padding: 80px 60px 80px var(--margin-desktop);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.dhaba-hero-content::after {
  content: '';
  position: absolute;
  top: 80px; bottom: 80px;
  right: 0;
  width: 1px;
  background: rgba(89,101,42,0.15);
}

/* ── Watermark logo behind hero text ── */
/* .dhaba-hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  background-image: url('../assets/logo/dhaba-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
} */

/* Lift all hero text above the watermark */
.dhaba-hero-content > * {
  position: relative;
  z-index: 1;
}

.dhaba-hero-content .dhaba-eyebrow {
  margin-bottom: 24px;
}
.dhaba-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 700;
  color: var(--fg);
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 28px;
}
/* Accent the word "Laal Mirch" style — first letter red */
.dhaba-hero-headline em {
  font-style: normal;
  color: var(--dred);
}
.dhaba-hero-tagline {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--fg-50);
  margin-bottom: 24px;
  line-height: 1.5;
}
.dhaba-hero-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}
.dhaba-hero-actions { display: flex; gap: 16px; }


/* Hero right: full-bleed image */
.dhaba-hero-image-col {
  position: relative;
  overflow: hidden;
  background: #E8E0D0;
}
.dhaba-hero-image-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.1);
  transition: filter 1500ms ease-in-out;
}
.dhaba-hero-image-col:hover img { filter: grayscale(0); }

/* Address pill — bottom left of image */
.dhaba-hero-address {
  position: absolute;
  bottom: 32px; left: 0;
  background: var(--dgreen);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

/* ── Intro ── */
#dhaba-intro {
  background: var(--white);
  padding: 80px var(--margin-desktop);
  border-top: 1px solid rgba(89,101,42,0.1);
  border-bottom: 1px solid rgba(89,101,42,0.1);
}
.dhaba-intro-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.dhaba-intro-rule {
  width: 40px;
  height: 2px;
  background: var(--dred);
  margin-bottom: 0;
}
.dhaba-intro-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.dhaba-intro-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.85;
  max-width: 680px;
}

/* ── Pillars — light cards ── */
#dhaba-pillars {
  background: var(--dcanvas);
  padding: 100px var(--margin-desktop);
}
.dhaba-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(89,101,42,0.12);
  border: 1px solid rgba(89,101,42,0.12);
}
.dhaba-pillar {
  background: var(--dcanvas);
  display: flex;
  flex-direction: column;
  transition: background var(--transition-base);
}
.dhaba-pillar:hover { background: var(--white); }
.pillar-image {
  position: relative;
  overflow: hidden;
  background: #D8D0C0;
  height: 280px;
}
.pillar-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.pillar-body {
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pillar-number {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--dred);
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}
.pillar-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.8;
  flex: 1;
}
.pillar-body .dhaba-link { margin-top: 12px; }

/* ── Signature Dishes ── */
#dhaba-signature {
  background: var(--white);
  padding: 80px var(--margin-desktop) 100px;
  border-top: 1px solid rgba(89,101,42,0.1);
}
.dhaba-sig-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.dhaba-sig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dhaba-sig-card {
  display: flex;
  flex-direction: column;
  background: var(--dcanvas);
  border: 1px solid rgba(89,101,42,0.12);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.dhaba-sig-card:hover {
  box-shadow: 0 8px 32px rgba(89,101,42,0.12);
  transform: translateY(-4px);
}
.dhaba-sig-img {
  position: relative;
  overflow: hidden;
  background: #D8D0C0;
  aspect-ratio: 4/3;
}
.dhaba-sig-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.spice-overlay {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(245,240,230,0.9);
  padding: 5px 9px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.spice-rating { display: flex; gap: 4px; }
.dhaba-sig-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dhaba-sig-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}
.dhaba-sig-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.65;
  flex: 1;
}
.dhaba-sig-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dgreen);
  background: rgba(89,101,42,0.08);
  border: 1px solid rgba(89,101,42,0.15);
  padding: 4px 10px;
  display: inline-block;
  width: fit-content;
  margin-top: 4px;
}

/* ── Location Strip — green accent ── */
#dhaba-location-strip {
  background: var(--dcanvas);
  border-top: 1px solid rgba(89,101,42,0.12);
}
.location-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.location-strip-text {
  padding: 80px 60px 80px var(--margin-desktop);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  border-right: 1px solid rgba(89,101,42,0.12);
}
.location-strip-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.05;
  letter-spacing: -1.5px;
}
.location-strip-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.8;
  max-width: 440px;
}
.location-strip-address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dgreen);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 500;
  padding: 12px 18px;
  width: fit-content;
}
.location-strip-image {
  position: relative;
  overflow: hidden;
  background: #D8D0C0;
}
.location-strip-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE 390px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Hero */
  #dhaba-hero { grid-template-columns: 1fr; min-height: unset; margin-top: 72px; }
  .dhaba-hero-content { padding: 48px 20px 40px; }
  .dhaba-hero-content::after { display: none; }
  .dhaba-hero-headline { font-size: 44px; letter-spacing: -1.5px; }
  .dhaba-hero-tagline { font-size: 15px; }
  .dhaba-hero-desc { font-size: 14px; max-width: 100%; margin-bottom: 28px; }
  .dhaba-hero-actions { flex-direction: column; }
  .dhaba-hero-actions .btn { width: 100%; }
  .dhaba-hero-image-col { height: 320px; }
  .dhaba-hero-address { bottom: 16px; padding: 10px 16px; }

  /* Intro */
  #dhaba-intro { padding: 48px 20px; }
  .dhaba-intro-inner { grid-template-columns: 1fr; gap: 20px; }
  .dhaba-intro-headline { font-size: 26px; }
  .dhaba-intro-body { font-size: 14px; }

  /* Pillars */
  #dhaba-pillars { padding: 56px 20px; }
  .dhaba-pillars-grid { grid-template-columns: 1fr; }
  .pillar-image { height: 220px; }
  .pillar-body { padding: 28px 24px; }
  .pillar-title { font-size: 20px; }

  /* Signature Dishes */
  #dhaba-signature { padding: 48px 20px 64px; }
  .dhaba-sig-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .dhaba-sig-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dhaba-sig-name { font-size: 15px; }
  .dhaba-sig-desc { font-size: 12px; }

  /* Location Strip */
  .location-strip-inner { grid-template-columns: 1fr; min-height: unset; }
  .location-strip-text { padding: 48px 20px 40px; border-right: none; }
  .location-strip-headline { font-size: 28px; }
  .location-strip-body { font-size: 14px; max-width: 100%; }
  .location-strip-image { height: 280px; }
}