/* =========================================================
   Home page (index.html) — baaki sab css/style.css mein hai
   ========================================================= */
.home {
  --script: "Kaushan Script", cursive;
  --home-dark: #1f2a10;   /* deals banner / badges ka gehra green */
}

.home-wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.home-section { padding-top: 56px; }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.script-note { font-family: var(--script); line-height: 1.05; color: var(--text); pointer-events: none; }

/* ---------- Buttons ---------- */
.h-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  text-decoration: none;
  border-radius: 6px;
  transition: background .15s, color .15s, border-color .15s, transform .15s;
}
.h-btn svg { width: 18px; height: 18px; transition: transform .2s; }
.h-btn:hover svg { transform: translateX(4px); }
.h-btn.small { padding: 11px 20px; font-size: 14px; }
.btn-outline { background: var(--white); border: 2px solid var(--btn); color: var(--text); padding: 13px 28px; }
.btn-outline:hover { background: var(--brand-soft); }

/* ---------- Section headings ---------- */
.h-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.home .section-title { margin-left: 0; font-size: 30px; }
.h-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.h-more svg { width: 16px; height: 16px; color: var(--brand); }
.h-more:hover { color: var(--brand-dark); }
.h-more .sm-only { display: none; } /* mobile par "View More" */

/* =========================================================
   Hero — banner apne asal size (2087×753) mein, kahin se nahi katta.
   Bari screen par text banner ke upar, choti screen par text upar aur banner neeche.
   ========================================================= */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #f3f1ee; /* banner ke left side jaisa rang */
}
.hero-pic { display: block; }
.hero-bg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2087 / 753; /* load hone se pehle bhi jagah sahi rahe */
}
.hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.hero-text { max-width: 540px; }
.hero h1 {
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--brand); }
.hero p { font-size: 16px; line-height: 1.6; color: #45484d; margin-bottom: 26px; max-width: 470px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.hero-features { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 30px; font-size: 14px; font-weight: 500; }
.hero-features li { display: flex; align-items: center; gap: 10px; }
.hero-features svg { width: 26px; height: 26px; color: var(--brand); flex-shrink: 0; }

.hero .script-note {
  position: absolute;
  left: 50%;
  top: 34%;
  font-size: 28px;
  transform: rotate(-12deg);
}

/* gehra green "brush" badge */
.blob-badge {
  position: absolute;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  padding-top: 4px;
  font-family: var(--script);
  font-size: 24px;
  line-height: 1.05;
  text-align: center;
  color: var(--white);
  background: var(--home-dark);
  border-radius: 52% 48% 46% 54% / 50% 56% 44% 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  transform: rotate(-6deg);
  pointer-events: none;
}
.hero .blob-badge { right: 32px; top: 8%; width: clamp(96px, 10vw, 150px); height: clamp(96px, 10vw, 150px); font-size: clamp(16px, 1.6vw, 24px); }
.blob-badge.small { width: 118px; height: 118px; font-size: 19px; background: var(--brand); }

/* =========================================================
   Featured items — menu wale cards, 5 ek line mein
   ========================================================= */
.featured { position: relative; padding-bottom: 56px; }
.featured-grid { grid-template-columns: repeat(5, 1fr); gap: 50px 20px; }
.featured-grid .card-img { height: 160px; }
.featured-grid .card h3 { font-size: 17px; }
.featured-grid .card p { font-size: 13px; min-height: 36px; margin-bottom: 14px; }
.featured-grid .add-btn { font-size: 12px; padding: 10px 12px; }
.featured .blob-badge.side { right: -110px; top: 150px; }
.featured-grid .clone { display: none; } /* copies sirf slider (choti screen) ke liye */
@media (max-width: 1480px) { .featured .blob-badge.side { display: none; } }

/* =========================================================
   Hot Deals — 2 bade cards, bayen khaane ki tasveerein, dayen tafseel
   ========================================================= */
.hot-deals { padding-bottom: 56px; }
.deal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.deal-card {
  position: relative;
  display: grid;
  grid-template-columns: 46% 1fr;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  transition: transform .2s, box-shadow .2s;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0, 0, 0, .12); }

/* tasveerein (safed background wali) — pizza peeche, 2 burger aage, bottle side par */
.deal-visual {
  position: relative;
  min-height: 250px;
  background: #fff;
  border-right: 1px dashed var(--line);
}
.deal-visual > span:not(.deal-off) { position: absolute; display: block; }
.deal-visual img { display: block; width: 100%; height: 100%; object-fit: contain; }
.deal-pizza  { width: 62%; aspect-ratio: 1; left: 6%; top: 8%; }
.deal-burger { width: 44%; aspect-ratio: 1; bottom: 4%; transition: transform .3s var(--ease-smooth); }
.deal-burger.b1 { left: 2%; z-index: 2; }
.deal-burger.b2 { left: 30%; z-index: 3; }
.deal-drink  { width: 26%; height: 72%; right: 4%; top: 14%; z-index: 1; }
.deal-card:hover .deal-burger.b2 { transform: rotate(4deg) translateY(-3px); }
/* deal ki apni poori tasveer (4:3) — bina kate */
.deal-photo { inset: 14px 10px 10px; transition: transform .35s var(--ease-smooth); }
.deal-card:hover .deal-photo { transform: scale(1.04); }

/* laal "% OFF" sticker */
.deal-off {
  position: absolute;
  z-index: 5;
  top: 12px;
  left: 12px;
  display: grid;
  place-content: center;
  text-align: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #e2361b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-12deg);
  box-shadow: 0 6px 14px rgba(226, 54, 27, .4);
  animation: deal-pulse 2.4s ease-in-out infinite;
}
.deal-off b { display: block; font-family: "Oswald", sans-serif; font-size: 20px; }
@keyframes deal-pulse { 50% { transform: rotate(-12deg) scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .deal-off { animation: none; } }

.deal-info { display: flex; flex-direction: column; padding: 22px 22px 22px 24px; }
.deal-tag {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.deal-info h3 { font-family: "Oswald", sans-serif; font-size: 24px; text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; }
.deal-items { list-style: none; font-size: 13.5px; color: #3c3f44; margin-bottom: 16px; }
.deal-items li { padding: 4px 0; border-bottom: 1px dashed var(--line); }
.deal-items li:last-child { border-bottom: 0; }
.deal-items b { color: var(--brand-dark); margin-right: 4px; }
.deal-price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; margin: auto 0 14px; }
.deal-price strong { font-family: "Oswald", sans-serif; font-size: 28px; color: var(--text); }
.deal-price s { font-size: 14px; color: var(--muted); }
.deal-save { font-size: 12px; font-weight: 700; color: #e2361b; }
.deal-add { align-self: flex-start; }

@media (max-width: 1100px) {
  .deal-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
}
@media (max-width: 800px) { .hot-deals { padding-bottom: 44px; } }
@media (max-width: 520px) {
  .deal-card { grid-template-columns: 1fr; }
  .deal-visual { min-height: 0; aspect-ratio: 16 / 10; border-right: 0; border-bottom: 1px dashed var(--line); }
  .deal-pizza { width: 46%; left: 14%; top: 6%; }
  .deal-burger { width: 34%; }
  .deal-burger.b1 { left: 8%; }
  .deal-burger.b2 { left: 34%; }
  .deal-drink { width: 20%; right: 12%; }
  .deal-info { padding: 18px; }
  .deal-add { align-self: stretch; }
}

/* =========================================================
   Family Meals & Deals banner
   ========================================================= */
/* Banner ka text tasveer mein hi hai — bas poori tasveer, bina kate */
.deals {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 2052 / 354; /* load hone se pehle bhi jagah sahi rahe */
  transition: transform .2s, box-shadow .2s;
}
.deals:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0, 0, 0, .18); }
.deals img { display: block; width: 100%; height: 100%; }
/* mobile — lambi (portrait) tasveer, woh bhi poori */
@media (max-width: 600px) {
  .deals { aspect-ratio: 941 / 1672; max-width: 480px; margin: 0 auto; }
}

/* =========================================================
   About — bayen text + stats, dayen tasveer, neeche reviews
   ========================================================= */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 56px; align-items: center; }
.about-text p { font-size: 15px; line-height: 1.8; color: #3c3f44; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-copy { margin-bottom: 26px; }
.about-img {
  aspect-ratio: 1536 / 1024; /* tasveer ka asal ratio — bina kate */
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #5b4330, #2b2117);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Our Story button aur stats ek hi line mein */
.about-actions { display: flex; align-items: center; gap: 24px; }
.about-actions .h-btn { flex-shrink: 0; }
.stats {
  flex: 1;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.stats li { font-size: 12px; line-height: 1.3; color: var(--muted); }
.stats b { display: block; font-family: "Oswald", sans-serif; font-size: 24px; color: var(--text); font-variant-numeric: tabular-nums; }

/* Reviews — About ke neeche poori width, 3 cards ek waqt mein (slider) */
.review-slider { --per: 3; grid-column: 1 / -1; overflow: hidden; padding: 6px 4px 14px; margin: -6px -4px -14px; }
.review-track {
  display: flex;
  gap: 20px;
  transition: transform .7s var(--ease-smooth);
  will-change: transform;
}
.review-track .review { flex: 0 0 calc((100% - (var(--per) - 1) * 20px) / var(--per)); }
/* animation band ho to haath se side-scroll */
.manual { overflow-x: auto !important; scroll-snap-type: x mandatory; }
.manual .review, .manual .card { scroll-snap-align: start; }
.review {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}
.stars { display: flex; gap: 2px; color: #f5b301; margin-bottom: 12px; }
.stars svg { width: 17px; height: 17px; }
.review blockquote { font-size: 14px; line-height: 1.65; color: #3c3f44; margin-bottom: 16px; }
.review figcaption { margin-top: auto; display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); }
.review figcaption b { display: block; font-size: 13px; color: var(--text); }
.avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 13px;
}

/* =========================================================
   Order CTA
   ========================================================= */
.cta {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr 220px;
  align-items: center;
  gap: 20px;
  min-height: 190px;
  padding: 0 40px;
  border-radius: 14px;
  background: #e9ebe4 url("../assets/common-bg.webp") center / cover no-repeat; /* food doodles wala common bg */
  margin-bottom: 60px;
}
.cta-img { align-self: end; height: 180px; display: flex; align-items: flex-end; justify-content: center; }
.cta-img img { max-height: 100%; max-width: 100%; object-fit: contain; display: block; }
.cta-text { text-align: center; padding: 28px 0; }
.cta h2 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; margin-bottom: 8px; }
.cta p { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.cta .script-note { position: static; font-size: 30px; color: var(--brand-dark); transform: rotate(-10deg); text-align: center; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1200px) {
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .review-slider { --per: 2; }
  .hero .script-note { display: none; }
}

@media (max-width: 900px) {
  /* Featured — 2 cards dikhein, baaki slide hote aayein */
  .featured-slider { overflow: hidden; padding: 8px 4px 28px; margin: -8px -4px -28px; }
  .featured-grid { display: flex; gap: 16px; padding-bottom: 0; transition: transform .7s var(--ease-smooth); will-change: transform; }
  .featured-grid .card { flex: 0 0 calc((100% - 16px) / 2); }
  .featured-grid .clone { display: flex; }
  .cta { grid-template-columns: 1fr; padding: 0 20px; text-align: center; }
  .cta-img { order: 2; height: 160px; }
  .cta .script-note { display: none; }
  .about { grid-template-columns: 1fr; gap: 28px; }
  .review-slider { --per: 1; }
}

@media (max-width: 800px) {
  .home-wrap { padding: 0 16px; }
  .home-section { padding-top: 40px; }
  .featured { padding-bottom: 44px; }
  .home .section-title { font-size: 24px; }
  .h-more .lg-only { display: none; }
  .h-more .sm-only { display: inline; }



  .about-actions { flex-direction: column; align-items: flex-start; }
  /* About text — 170px ke dabbe mein, andar hi scroll (scrollbar chhupa hua) */
  .about-copy {
    height: 170px;
    overflow-y: auto;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent);
    mask-image: linear-gradient(180deg, #000 80%, transparent);
  }
  .about-copy::-webkit-scrollbar { display: none; }
  .about-copy.at-end { -webkit-mask-image: none; mask-image: none; }
  .stats { width: 100%; grid-template-columns: repeat(2, 1fr); padding: 18px 0 0; border-left: 0; border-top: 1px solid var(--line); }
}

/* =========================================================
   Hero — tablet / mobile
   Sirf khaali deewar wala hissa katta hai, burger aur text hamesha poore dikhte hain.
   ========================================================= */

/* 901–1200: wide banner, text left par. Oonchai itni ke burger text se door rahe */
@media (min-width: 901px) and (max-width: 1200px) {
  .hero-bg {
    aspect-ratio: auto;
    height: min(calc((100vw - 420px) / 1.52), 500px);
    object-fit: cover;
    object-position: right center; /* left ki khaali deewar katti hai */
  }
  /* text ke peeche halki safed dhund — ketchup / burger ke kinare se text saaf rahe */
  .hero-pic { position: relative; }
  .hero-pic::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(243, 241, 238, .9) 0%, rgba(243, 241, 238, .6) 32%, transparent 48%);
  }
  .hero-text { max-width: 400px; }
  .hero h1 { font-size: clamp(28px, 3.2vw, 38px); margin-bottom: 12px; }
  .hero p { font-size: 14px; margin-bottom: 18px; max-width: 380px; }
  .hero-btns { margin-bottom: 16px; }
  .hero-btns .h-btn { padding: 12px 20px; font-size: 14px; }
  .hero-features { gap: 8px 18px; font-size: 12px; }
  .hero-features svg { width: 20px; height: 20px; }
  .hero .blob-badge { top: 7%; }
}

/* 900 se neeche: lambi (mobile) tasveer, upar text, neeche burger */
@media (max-width: 900px) {
  .hero-bg {
    aspect-ratio: auto;
    height: min(calc(69vw + 360px), 177.7vw); /* 177.7vw = tasveer ki poori oonchai */
    object-fit: cover;
    object-position: center bottom; /* sirf upar ki khaali deewar katti hai */
  }
  .hero-inner { align-items: flex-start; padding-top: 32px; }
  .hero-text { max-width: 560px; }
  .hero .eyebrow { font-size: 11px; margin-bottom: 10px; }
  .hero h1 { font-size: clamp(26px, 5.4vw, 44px); margin-bottom: 12px; }
  .hero p { font-size: 14px; line-height: 1.55; margin-bottom: 18px; }
  .hero-btns { gap: 10px; margin-bottom: 18px; }
  .hero-btns .h-btn { padding: 12px 18px; font-size: 14px; white-space: nowrap; }
  .hero-features { gap: 8px 16px; font-size: 12px; }
  .hero-features li { gap: 6px; }
  .hero-features svg { width: 20px; height: 20px; }
  /* burger ke bayen taraf khaali jagah mein */
  .hero .blob-badge { width: clamp(80px, 12vw, 110px); height: clamp(80px, 12vw, 110px); font-size: clamp(14px, 2vw, 18px); top: auto; bottom: 58vw; left: 16px; right: auto; }
}

/* 400 se neeche: tasveer bilkul poori, jaise pehle */
@media (max-width: 400px) {
  .hero-bg { height: auto; aspect-ratio: 941 / 1672; }
  .hero-btns .h-btn { padding: 12px 10px; }
  .hero .blob-badge { top: 61%; bottom: auto; left: 12px; }
}

@media (max-width: 480px) {
  .hero-btns .h-btn { flex: 1; }
  .h-head { align-items: center; gap: 12px; margin-bottom: 26px; }
  .h-head .section-title { margin-bottom: 0; }
}
