/* ============================================================
   THE TASTE OF ABU — Main Stylesheet
   Step 1: Base (variables, reset, typography, layout, buttons)
   Sab kuch CSS variables se control hota hai — theme change easy.
   ============================================================ */

/* ---------- 1. THEME VARIABLES ---------- */
:root {
  /* ===== Rajasthani brand palette (logo/menu se) ===== */
  --color-maroon:      #8a1c1c;   /* primary deep red/maroon */
  --color-maroon-dark: #6a1313;
  --color-dark:        #3a1410;   /* deep maroon-brown — dark sections/header/footer */
  --color-dark-2:      #4c1d16;   /* slightly lighter dark */
  --color-accent:      #e0a629;   /* gold / mustard */
  --color-accent-dark: #c08815;
  --color-green:       #3f6b34;   /* veg green accent */
  --color-cream:       #f8f1e2;   /* warm cream */
  --color-text:        #2c1d16;   /* body text on light bg (warm brown-black) */
  --color-text-light:  #fdf7ec;   /* text on dark bg */
  --color-muted:       #9a8b7a;
  --color-light-bg:    #faf5ea;   /* warm cream page background */
  --color-line:        #e7ddc8;   /* borders */

  /* Typography */
  --font-display: 'Oswald', sans-serif;     /* bold condensed headings */
  --font-script:  'Pacifico', cursive;      /* script accent words */
  --font-body:    'Roboto', sans-serif;     /* body text */

  /* Layout */
  --container: 1200px;
  --gap: 30px;
  --radius: 8px;
  --header-h: 90px;

  /* Effects */
  --transition: 0.3s ease;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ---------- 2. RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html { overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-light-bg);
  overflow-x: clip;   /* 'clip' (not 'hidden') taaki sticky header chale */
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

/* Section ke upar chhota label, jaise "street food" */
.section-label {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--color-maroon);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
  display: block;
}
.section--dark .section-label { color: var(--color-accent); }

/* Script/italic accent word (jaise "Food Truck") */
.script-accent {
  font-family: var(--font-script);
  text-transform: none;
  color: var(--color-accent);
}

/* ---------- 4. LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: 90px 0; }
.section--dark { background: var(--color-dark); color: var(--color-text-light); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--color-text-light); }

.text-center { text-align: center; }

.grid { display: grid; gap: var(--gap); }
.flex { display: flex; }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn--primary {
  background: var(--color-accent);
  color: var(--color-dark);
}
.btn--primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
}
.btn--outline {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}
.btn--outline:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}
.btn--outline-light { border-color: var(--color-text-light); color: var(--color-text-light); }
.btn--outline-light:hover { background: var(--color-text-light); color: var(--color-dark); }
.btn + .btn { margin-left: 12px; }

/* ---------- 6. UTILITIES ---------- */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Section header (label + title centered) */
.section-head { text-align: center; margin-bottom: 50px; }

/* ---------- 7. RESPONSIVE BASE ---------- */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  body { font-size: 15px; }
}

/* ============================================================
   COMPONENTS — Header & Footer (Step 1 basic; refine in Step 2)
   ============================================================ */

/* ---------- HEADER ---------- */
/* Placeholder div ko box-tree se hatao taaki sticky header body ke andar chipke */
#header-placeholder { display: contents; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-dark);
  color: var(--color-text-light);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.25); }

.header-top {
  background: rgba(0,0,0,0.3);
  font-size: 0.85rem;
}
.header-top__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 8px;
}
.header-cta { padding: 8px 20px; font-size: 0.75rem; }

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}
.logo__main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  letter-spacing: 1px;
}

.nav__list { display: flex; gap: 28px; }
.nav__list a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
}
.nav__list a:hover { color: var(--color-accent); }

.header-social { display: flex; gap: 10px; }
.header-social a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--color-text-light);
}
.header-social a:hover,
.footer-social a:hover { background: var(--color-accent); color: var(--color-dark); border-color: var(--color-accent); }

/* Mobile nav toggle (hamburger) */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--color-text-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- FOOTER ---------- */
.site-footer { background: var(--color-dark); color: var(--color-text-light); position: relative; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  padding: 70px 20px 40px;
}
.footer-col h4 { color: var(--color-text-light); margin-bottom: 18px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a:hover { color: var(--color-accent); }
.footer-brand p { color: var(--color-muted); margin: 12px 0; }
.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.scroll-top {
  position: fixed;
  bottom: 25px; right: 25px;
  width: 46px; height: 46px;
  background: var(--color-accent);
  color: var(--color-dark);
  border-radius: 50%;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 99;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }

/* ---------- HEADER/FOOTER RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--color-dark-2);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }
  .nav.nav--open { max-height: 400px; }
  .nav__list { flex-direction: column; gap: 0; padding: 10px 20px; }
  .nav__list li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .footer-social { justify-content: center; }

  /* Mobile: logo center, hamburger right */
  .header-main__inner { position: relative; justify-content: center; }
  .logo { margin: 0 auto; }
  .header-actions { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
}


/* ============================================================
   HOMEPAGE SECTIONS (Step 2)
   ============================================================ */

/* ---------- HERO ---------- */
.hero { position: relative; height: 88vh; min-height: 560px; }
.hero-swiper, .hero-swiper .swiper-wrapper, .hero-slide { height: 100%; }
.hero-slide {
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(40,16,10,0.85), rgba(40,16,10,0.45));
  display: flex; align-items: center;
  z-index: 5;
}
.hero-content { max-width: 720px; color: var(--color-text-light); }
.hero-content h1 { color: var(--color-text-light); margin-bottom: 1rem; }
.hero-content p { font-size: 1.1rem; margin-bottom: 1.8rem; color: rgba(255,255,255,0.9); }
.hero-content .section-label { color: var(--color-accent); }
.hero-btns { display: flex; flex-wrap: wrap; gap: 0; }

/* ---------- ABOUT INTRO ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main { width: 85%; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-img-small {
  width: 45%;
  border-radius: var(--radius);
  position: absolute;
  bottom: -30px; right: 0;
  border: 6px solid var(--color-light-bg);
  box-shadow: var(--shadow);
}

/* ---------- SPECIALS CAROUSEL ---------- */
.specials-swiper { padding: 10px 0 20px; }
.dish-card {
  background: var(--color-light-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: auto;
}
.dish-card__img { height: 200px; background-size: cover; background-position: center; }
.dish-card__body {
  padding: 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.dish-card__body h3 { font-size: 1.05rem; color: var(--color-text); margin: 0; }
.dish-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-maroon);
  background: rgba(224,166,41,0.18);
  padding: 4px 12px; border-radius: 20px;
  white-space: nowrap;
}
.specials-swiper .swiper-button-prev,
.specials-swiper .swiper-button-next { color: var(--color-accent); }

/* ---------- MENU PREVIEW TABS ---------- */
.menu-tabs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-bottom: 36px;
}
.menu-tab {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.85rem; letter-spacing: 0.5px;
  padding: 10px 20px;
  border: 2px solid var(--color-line);
  border-radius: 30px;
  color: var(--color-text);
  background: #fff;
  transition: all var(--transition);
}
.menu-tab:hover { border-color: var(--color-accent); }
.menu-tab.is-active {
  background: var(--color-maroon);
  color: var(--color-text-light);
  border-color: var(--color-maroon);
}
.menu-panel { display: none; max-width: 760px; margin-inline: auto; }
.menu-panel.is-active { display: block; animation: fadeIn 0.4s ease; }
.menu-item {
  display: flex; align-items: baseline; gap: 8px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-line);
}
.mi-name { font-family: var(--font-display); font-size: 1.05rem; text-transform: uppercase; }
.mi-dots { flex: 1; border-bottom: 2px dotted var(--color-line); transform: translateY(-4px); }
.mi-price { font-family: var(--font-display); font-weight: 700; color: var(--color-maroon); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------- WHY US ---------- */
.why-us { background: var(--color-cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.why-item {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.why-item:hover { transform: translateY(-6px); }
.why-ico { font-size: 2.5rem; margin-bottom: 12px; }
.why-item h4 { color: var(--color-maroon); margin-bottom: 8px; }
.why-item p { color: var(--color-muted); font-size: 0.95rem; margin: 0; }

/* ---------- CATERING CTA ---------- */
.catering-cta { background-size: cover; background-position: center; background-attachment: fixed; }
.catering-cta__overlay {
  background: rgba(40,16,10,0.82);
  padding: 100px 0;
  color: var(--color-text-light);
}
.catering-cta h2 { color: var(--color-text-light); }
.catering-cta .section-label { color: var(--color-accent); }
.catering-cta p { max-width: 600px; margin: 0 auto 1.8rem; color: rgba(255,255,255,0.9); }

/* ---------- FIND US ---------- */
.find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.timings { margin: 20px 0; }
.timings li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 12px 0; border-bottom: 1px dashed var(--color-line);
}
.timings strong { color: var(--color-maroon); font-family: var(--font-display); }
.find-address { color: var(--color-muted); margin: 16px 0; }
.find-map { height: 380px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.find-map iframe { width: 100%; height: 100%; }

/* ---------- HOMEPAGE RESPONSIVE ---------- */
@media (max-width: 900px) {
  .about-grid, .find-grid { grid-template-columns: 1fr; }
  .about-images { margin-bottom: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .catering-cta { background-attachment: scroll; }
}
@media (max-width: 600px) {
  .hero { height: auto; min-height: 92vh; }
  .hero-swiper { position: absolute; inset: 0; z-index: 1; }      /* image background ke peeche */
  .hero-overlay { position: relative; z-index: 2; min-height: 92vh; padding: 90px 0; text-align: center; }
  .hero-content { text-align: center; margin-inline: auto; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn + .btn { margin-left: 0; margin-top: 10px; }
  .why-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER PAGES — Page banner + Menu page (Step 3)
   ============================================================ */

/* ---------- PAGE BANNER (reusable) ---------- */
.page-banner {
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-banner__overlay {
  background: linear-gradient(to right, rgba(40,16,10,0.88), rgba(40,16,10,0.55));
  padding: 110px 0 90px;
  color: var(--color-text-light);
  text-align: center;
}
.page-banner h1 { color: var(--color-text-light); }
.page-banner .section-label { color: var(--color-accent); }
.page-banner p { color: rgba(255,255,255,0.9); margin: 0; }

/* ---------- MENU CATEGORY ---------- */
.menu-cat--alt { background: var(--color-cream); }
.menu-cat__head { text-align: center; margin-bottom: 40px; }
.menu-cat__sub { color: var(--color-muted); margin-top: 6px; }
.menu-cat__sub strong { color: var(--color-maroon); }

/* two-column item list */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 50px;
  max-width: 920px;
  margin-inline: auto;
}

/* feature dishes (with photos) */
.menu-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 920px;
  margin-inline: auto;
}
.menu-feature--3 { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
.feature-dish {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.menu-cat--alt .feature-dish { background: #fff; }
.feature-dish__img {
  aspect-ratio: 1 / 1;        /* crops squarish hain — square container me zoom minimal */
  background-size: cover;
  background-position: center;
  background-color: var(--color-cream);
}
.feature-dish__body { padding: 20px; }
.feature-dish__body h3 { font-size: 1.2rem; color: var(--color-maroon); margin-bottom: 6px; }
.feature-dish__body p { color: var(--color-muted); font-size: 0.92rem; margin-bottom: 12px; }
.size-prices { display: flex; flex-wrap: wrap; gap: 8px; }
.size-prices span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  background: rgba(224,166,41,0.18);
  color: var(--color-maroon);
  padding: 4px 10px; border-radius: 16px;
}
/* ============================================================
   LOGO IMAGE + WHATSAPP BUTTON (Step 4 additions)
   ============================================================ */
.site-header .logo-img { height: 52px; width: auto; display: block; }
.footer-logo { height: 80px; width: auto; margin-bottom: 6px; }

@media (max-width: 600px) {
  .site-header .logo-img { height: 42px; }
}

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  bottom: 25px; left: 25px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  z-index: 999;
  transition: transform var(--transition);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
@keyframes waPulse {
  0%   { box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 18px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- FAQ (AEO/GEO) ---------- */
.faq-section { background: var(--color-cream); }
.faq-list { max-width: 820px; margin-inline: auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--color-maroon);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--color-accent); }
.faq-item[open] summary::after { content: '\2013'; }
.faq-item p { padding: 0 22px 18px; margin: 0; color: var(--color-text); }

/* ---------- HEADER top-bar contact + social ---------- */
.header-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.hc-item { display: inline-flex; align-items: center; gap: 6px; color: var(--color-text-light); font-size: 0.82rem; }
.hc-item svg { color: var(--color-accent); flex-shrink: 0; }
.hc-item:hover { color: var(--color-accent); }
.header-social a svg { display: block; }
.header-actions { display: flex; align-items: center; gap: 14px; }

@media (max-width: 900px) {
  .header-cta { display: none; }          /* mobile: Book Your Event nav/Catering se */
}
@media (max-width: 600px) {
  .hc-item span { display: none; }         /* mobile pe sirf phone/mail icons */
  .header-contact { gap: 14px; }
}

/* ============================================================
   INNER PAGES — About, Catering, Blog, Contact (Step 5)
   ============================================================ */
/* Story / values reuse .about-grid, .why-grid, .page-banner */
.story-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Forms (catering + contact) */
.form-card { background: #fff; padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-family: var(--font-display); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.5px; color: var(--color-maroon); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 14px; border: 1px solid var(--color-line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.95rem; background: #fff; color: var(--color-text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--color-accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--color-muted); margin-top: 12px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-list { margin: 22px 0; }
.contact-info-list li { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.contact-info-list .ci-ico { color: var(--color-accent); font-size: 1.3rem; line-height: 1; flex-shrink: 0; }
.contact-info-list strong { display: block; font-family: var(--font-display); text-transform: uppercase; font-size: 0.85rem; color: var(--color-maroon); }
.contact-info-list span { color: var(--color-text); }
.contact-map { height: 320px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 30px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* Blog / News */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition); }
.blog-card:hover { transform: translateY(-6px); }
.blog-card__img { height: 200px; background-size: cover; background-position: center; }
.blog-card__body { padding: 22px; }
.blog-card__date { font-family: var(--font-display); font-size: 0.76rem; text-transform: uppercase; color: var(--color-accent); letter-spacing: 0.5px; }
.blog-card__body h3 { font-size: 1.15rem; margin: 8px 0 10px; }
.blog-card__body p { color: var(--color-muted); font-size: 0.92rem; margin-bottom: 14px; }
.read-more { font-family: var(--font-display); text-transform: uppercase; font-size: 0.82rem; color: var(--color-maroon); }
.read-more:hover { color: var(--color-accent); }

/* Catering features */
.cater-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 50px; }
.cater-item { text-align: center; padding: 26px 18px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.cater-item .why-ico { font-size: 2.2rem; margin-bottom: 10px; }
.cater-item h4 { color: var(--color-maroon); font-size: 1.05rem; }

@media (max-width: 900px) {
  .contact-grid, .form-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .cater-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid, .cater-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GHOST TEXT behind headings (watermark effect) — Step 6
   ============================================================ */
.section-head, .menu-cat__head { position: relative; z-index: 1; }
.section-head[data-ghost]::before,
.menu-cat__head[data-ghost]::before {
  content: attr(data-ghost);
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(3.2rem, 11vw, 8rem);
  letter-spacing: 3px;
  line-height: 1;
  color: rgba(138, 28, 28, 0.06);   /* faint maroon on light bg */
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
  max-width: 100vw;
  overflow: hidden;
}
.section--dark .section-head[data-ghost]::before { color: rgba(255, 255, 255, 0.07); }
.section-head > *, .menu-cat__head > * { position: relative; }

/* ============================================================
   MOBILE / TABLET FRIENDLY — Step 6
   ============================================================ */
@media (max-width: 768px) {
  /* Content center-aligned for a clean mobile look */
  .about-text, .find-info, .menu-cat__head, .section-head,
  .hero-content, .order-cta, .cater-item, .why-item { text-align: center; }

  .about-images { margin-inline: auto; max-width: 440px; }
  .about-img-main { width: 100%; }
  .about-img-small { position: static; width: 60%; margin: -40px auto 0; }

  /* Body paragraphs justified for neat block edges */
  .about-text p, .find-info p, .menu-cat__sub, .feature-dish__body p,
  .blog-card__body p, .faq-item p, .order-cta p, .catering-cta p,
  .hero-content p, .why-item p, .form-note { text-align: justify; text-justify: inter-word; }

  /* Lists & footer centered */
  .timings li { justify-content: space-between; gap: 12px; }
  .footer-inner { text-align: center; }
  .footer-brand, .footer-social { align-items: center; justify-content: center; }
  .footer-logo, .footer-social { margin-inline: auto; }
  .footer-social { display: flex; }

  /* Contact info stays left-readable but centered block */
  .contact-info, .contact-form { text-align: center; }
  .contact-info-list { display: inline-block; text-align: left; }

  /* FAQ summary spacing */
  .faq-item summary { font-size: 0.92rem; }

  /* Section spacing comfortable on mobile */
  .section { padding: 55px 0; }
  .page-banner__overlay { padding: 80px 0 60px; }
}

@media (max-width: 480px) {
  .header-actions .header-cta { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .dish-card__img { height: 220px; }
}

/* ============================================================
   INSTAGRAM GALLERY — infinite marquee slider (Step 7)
   ============================================================ */
.insta-section { padding-bottom: 70px; }
.insta-marquee {
  margin-top: 36px;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.insta-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: instaScroll 40s linear infinite;
}
.insta-marquee:hover .insta-track { animation-play-state: paused; }
.insta-item {
  flex: 0 0 auto;
  width: 230px; height: 230px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform var(--transition);
}
.insta-item::after {
  content: "\1F4F7";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: rgba(58,20,16,0.0);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
}
.insta-item:hover { transform: scale(0.97); }
.insta-item:hover::after { opacity: 1; background: rgba(58,20,16,0.45); }
@keyframes instaScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 7px)); }
}
@media (max-width: 600px) {
  .insta-item { width: 160px; height: 160px; }
}

/* Gallery video tiles */
.insta-item--video { overflow: hidden; background: var(--color-dark); }
.insta-item--video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   LOGO SIZE — forced via CSS (HTML inline sync unreliable here)
   ============================================================ */
.site-header .logo-img,
header .logo-img { height: 70px !important; width: auto !important; display: block !important; }
.site-footer .footer-logo { height: 92px !important; width: auto !important; display: block !important; }
.header-main__inner { min-height: 96px; }   /* logo ke liye comfortable room */
@media (max-width: 600px) {
  .site-header .logo-img, header .logo-img { height: 56px !important; }
}

/* ============================================================
   POSTER GRIDS (Featured Specials / Menu posters) — Step 8
   ============================================================ */
.poster-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1040px; margin-inline: auto; }
.poster-card {
  background: var(--color-cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: transform var(--transition);
}
.poster-card:hover { transform: translateY(-5px); }
.poster-card img { width: 100%; height: 100%; object-fit: contain; display: block; }
.poster-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 1100px; }
.poster-card--wide { aspect-ratio: 16 / 10; }
.poster-card--wide img { object-fit: cover; }
.welcome-img { max-width: 300px; width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); margin: 6px auto 18px; display: block; }
@media (max-width: 900px) {
  .poster-grid { grid-template-columns: repeat(2, 1fr); }
  .poster-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .poster-grid { grid-template-columns: 1fr; } }

/* Signature catering line */
.signature-line { font-family: var(--font-script); color: var(--color-maroon); font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.2; margin: 2px 0 12px; }
.section--dark .signature-line, .catering-cta .signature-line { color: var(--color-accent); }
