/* ========================================
   NAWABZ FAMILY DHABA - Premium Website
   ======================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #C8972A;
  --gold-light: #E8B84B;
  --gold-dark: #9A6E10;
  --bg-dark: #0D0B08;
  --bg-card: #161310;
  --bg-section: #110E0A;
  --bg-alt: #191510;
  --text-primary: #F5EDD8;
  --text-muted: #9A8C75;
  --text-light: #D4C5A3;
  --wa-green: #25D366;
  --wa-dark: #128C7E;
  --accent-red: #C0392B;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 40px rgba(200,151,42,0.15);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Mulish', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; }

/* ---- SECTION LABELS & TITLES ---- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
}
.section-head { text-align: center; margin-bottom: 3rem; }

/* ---- REVEAL ANIMATION ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0D0B08;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,151,42,0.35);
}
.btn-wa {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-dark));
  color: #fff;
}
.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13,11,8,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,151,42,0.15);
  padding: 0.6rem 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links li a {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links li a:hover { color: var(--gold); }
.nav-links .nav-wa {
  background: var(--wa-green);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-left: 0.5rem;
}
.nav-links .nav-wa:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1001;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,11,8,0.92) 0%,
    rgba(13,11,8,0.75) 50%,
    rgba(13,11,8,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  transition-delay: 0.1s;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  transition-delay: 0.2s;
}
.hero-sub {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition-delay: 0.3s;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  transition-delay: 0.4s;
}
.hero-badges span {
  background: rgba(200,151,42,0.12);
  border: 1px solid rgba(200,151,42,0.3);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  transition-delay: 0.5s;
}
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  animation: fadeInUp 1s ease 1.5s both;
}
.scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ========== ABOUT ========== */
.about { background: var(--bg-section); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 8px 30px rgba(200,151,42,0.4);
}
.about-badge strong { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1; }
.about-desc {
  color: var(--text-muted);
  margin: 1.25rem 0 2rem;
  font-size: 0.97rem;
  line-height: 1.8;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.stat {
  background: var(--bg-card);
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}
.stat span:last-child { font-size: 0.75rem; color: var(--text-muted); }

/* ========== DISHES ========== */
.dishes { background: var(--bg-dark); }
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.dish-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(200,151,42,0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,151,42,0.2);
}
.dish-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-card);
}
.dish-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-img-wrap img { transform: scale(1.08); }
.dish-tag {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  text-transform: uppercase;
}
.dish-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.dish-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.dish-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.dish-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.dish-cat {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  background: rgba(200,151,42,0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.dish-order {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
}
.dish-order:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(200,151,42,0.4);
}
.dishes-cta {
  text-align: center;
  background: var(--bg-card);
  border: 1px dashed rgba(200,151,42,0.3);
  border-radius: var(--radius);
  padding: 2rem;
}
.dishes-cta p { color: var(--text-muted); margin-bottom: 1rem; }

/* ========== GALLERY ========== */
.gallery { background: var(--bg-section); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 1rem;
}
.g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  grid-column: span 4;
  cursor: pointer;
  background: var(--bg-card);
}
.g-large { grid-column: span 8; }
.g-wide { grid-column: span 8; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.g-item:hover img { transform: scale(1.07); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,8,0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition);
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* ========== REVIEWS ========== */
.reviews { background: var(--bg-dark); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem; right: 1rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(200,151,42,0.07);
  line-height: 1;
  pointer-events: none;
}
.review-card:hover {
  border-color: rgba(200,151,42,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.review-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.reviewer-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-dark);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.88rem; }
.reviewer small { color: var(--text-muted); font-size: 0.75rem; }

/* ========== WHATSAPP SECTION ========== */
.wa-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: #05120D;
  text-align: center;
}
.wa-bg {
  position: absolute; inset: 0;
}
.wa-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.wa-content { position: relative; z-index: 2; }
.wa-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--wa-green);
  margin-bottom: 0.75rem;
}
.wa-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.wa-sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--wa-green);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 8px 40px rgba(37,211,102,0.3);
}
.btn-wa-big:hover {
  background: #1ebe5a;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 50px rgba(37,211,102,0.5);
}
.wa-number {
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.wa-number a {
  color: var(--wa-green);
  font-weight: 700;
}

/* ========== LOCATION ========== */
.location { background: var(--bg-section); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}
.map-wrap {
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.loc-card {
  background: var(--bg-card);
  border: 1px solid rgba(200,151,42,0.1);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}
.loc-card:hover { border-color: rgba(200,151,42,0.3); }
.loc-icon-wrap {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(200,151,42,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.loc-card strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--gold); margin-bottom: 0.2rem; }
.loc-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.loc-card a { color: var(--gold-light); }
.loc-card a:hover { color: var(--gold); }

/* ========== INSTAGRAM ========== */
.insta-section { background: var(--bg-dark); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.insta-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  background: var(--bg-card);
}
.insta-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.insta-card:hover img { transform: scale(1.08); }
.insta-overlay {
  position: absolute; inset: 0;
  background: rgba(13,11,8,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: var(--transition);
}
.insta-card:hover .insta-overlay { opacity: 1; }
.insta-overlay span { color: #fff; font-size: 0.85rem; font-weight: 600; }

/* ========== BLOG/SEO ========== */
.blog { background: var(--bg-section); }
.blog-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.blog-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-top: 1.25rem;
}

/* ========== FOOTER ========== */
.footer {
  background: #080706;
  border-top: 1px solid rgba(200,151,42,0.12);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-n { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--gold); }
.footer-brand .logo-sub { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 0.5rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(200,151,42,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links strong, .footer-contact strong { color: var(--text-primary); font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--gold); }

/* ========== FLOATING BUTTONS ========== */
/* Wrapper ensures no overlap */
.float-buttons {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  z-index: 999;
}
.float-wa {
  background: var(--wa-green);
  color: #fff;
  border-radius: 50px;
  padding: 0.85rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 30px rgba(37,211,102,0.45);
  transition: var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
  white-space: nowrap;
}
.float-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 30px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}
.float-call {
  background: var(--gold);
  color: var(--bg-dark);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 25px rgba(200,151,42,0.5);
  transition: var(--transition);
}
.float-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200,151,42,0.6);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { height: 340px; }
  .about-badge { bottom: -1rem; right: -0.5rem; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; }
  .g-item { grid-column: span 3; }
  .g-large, .g-wide { grid-column: span 6; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: rgba(13,11,8,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0.25rem;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    border-left: 1px solid rgba(200,151,42,0.15);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 0.75rem 1rem; font-size: 1rem; }
  .nav-links .nav-wa { margin-left: 1rem; margin-top: 0.5rem; display: inline-block; }
  .hero-content { padding: 7rem 1.5rem 4rem; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; width: 100%; max-width: 280px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .dishes-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 0.75rem;
  }
  .g-item, .g-large, .g-wide { grid-column: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  /* Floating buttons on mobile - collapse WA to icon only */
  .float-wa span { display: none; }
  .float-wa {
    padding: 0;
    width: 54px; height: 54px;
    border-radius: 50%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-badges { flex-direction: column; width: fit-content; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .g-item, .g-large, .g-wide { grid-column: span 1; }
  .dishes-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-wa-big { font-size: 1rem; padding: 1rem 1.75rem; }
}

/* ===== MENU PDF SECTION ===== */
.menu-pdf-section {
  margin-top: 4rem;
  padding: 2rem 0 3rem;
}

.menu-pdf-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.menu-pdf-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #C8972A;
  margin: 0.3rem 0;
}

.menu-pdf-sub {
  color: #9A8C75;
  font-size: 1rem;
  margin-top: 0.5rem;
  font-style: italic;
}

/* ---- The card container ---- */
.menu-pdf-card {
  max-width: 820px;
  margin: 0 auto;
  background: #1a1510;
  border: 1px solid rgba(200,151,42,0.35);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(200,151,42,0.1);
}

/* ---- Fake browser top bar for fancy look ---- */
.menu-pdf-topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #111009;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid rgba(200,151,42,0.2);
}

.menu-pdf-dot-red,
.menu-pdf-dot-yellow,
.menu-pdf-dot-green {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.menu-pdf-dot-red    { background: #ff5f57; }
.menu-pdf-dot-yellow { background: #ffbd2e; }
.menu-pdf-dot-green  { background: #28c840; }

.menu-pdf-filename {
  margin-left: 0.6rem;
  font-size: 0.78rem;
  color: #9A8C75;
  font-family: 'Mulish', sans-serif;
  letter-spacing: 0.03em;
}

/* ---- PDF iframe ---- */
.menu-pdf-embed-wrap {
  position: relative;
  width: 100%;
  height: 620px;
  background: #0f0d09;
}

.menu-pdf-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Fallback — hidden by default, shown via JS if iframe fails */
.menu-pdf-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: absolute;
  inset: 0;
  background: #111009;
  text-align: center;
  padding: 2rem;
}

.menu-pdf-fallback.visible {
  display: flex;
}

.menu-pdf-fallback-icon {
  font-size: 3rem;
}

.menu-pdf-fallback-text {
  color: #9A8C75;
  font-size: 0.95rem;
}

.menu-pdf-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #C8972A;
  color: #0D0B08;
  font-family: 'Mulish', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.menu-pdf-open-btn:hover {
  background: #E8B84B;
}

/* ---- Action buttons ---- */
.menu-pdf-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1.4rem 1.5rem;
  border-top: 1px solid rgba(200,151,42,0.2);
  background: #111009;
  flex-wrap: wrap;
}

.menu-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.menu-pdf-btn-primary {
  background: #C8972A;
  color: #0D0B08;
  border: 2px solid #C8972A;
}

.menu-pdf-btn-primary:hover {
  background: #E8B84B;
  border-color: #E8B84B;
}

.menu-pdf-btn-secondary {
  background: transparent;
  color: #C8972A;
  border: 2px solid #C8972A;
}

.menu-pdf-btn-secondary:hover {
  background: rgba(200,151,42,0.12);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .menu-pdf-embed-wrap { height: 480px; }
  .menu-pdf-card { border-radius: 14px; }
  .menu-pdf-btn { font-size: 0.82rem; padding: 0.6rem 1.2rem; }
}

@media (max-width: 480px) {
  .menu-pdf-embed-wrap { height: 380px; }
  .menu-pdf-actions { gap: 0.7rem; }
  .menu-pdf-btn { font-size: 0.78rem; padding: 0.55rem 1rem; }
}

/* ===== FULL INTERACTIVE MENU (fim) ===== */
.fim-section {
  margin-top: 4rem;
  padding: 3rem 0 1rem;
  opacity: 1 !important;
  transform: none !important;
}
.fim-header { text-align: center; margin-bottom: 2.5rem; }
.fim-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #C8972A;
  margin: 0.3rem 0;
}
.fim-sub { color: var(--text-muted); font-size: 0.95rem; margin-top: 0.4rem; }

/* Tabs */
.fim-tabs {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-bottom: 1.8rem;
}
.fim-tab {
  background: transparent;
  border: 2px solid #C8972A;
  color: #C8972A;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 700;
  padding: 0.48rem 1rem; border-radius: 50px;
  cursor: pointer; transition: all 0.22s ease;
  white-space: nowrap;
}
.fim-tab:hover  { background: #C8972A; color: #0D0B08; }
.fim-tab.active { background: #C8972A; color: #0D0B08; font-weight: 800; }

/* Page description line */
.fim-page-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* Pages — only active one is shown, no display:block for hidden */
.fim-pages { position: relative; }
.fim-page { display: none; }
.fim-page.active { display: block; animation: fimIn 0.35s ease; }
@keyframes fimIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Grid — auto-fit so cards wrap naturally */
.fim-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  align-items: start;
}

/* Cards */
.fim-card {
  background: #161310;
  border: 1px solid rgba(200,151,42,0.2);
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.fim-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(200,151,42,0.13);
  border-color: rgba(200,151,42,0.42);
}
.fim-card.fim-veg    { border-top: 3px solid #4caf50; }
.fim-card.fim-nonveg { border-top: 3px solid #c0392b; }
.fim-card.fim-special{ border-top: 3px solid #C8972A; }

.fim-icon { font-size: 1.8rem; margin-bottom: 0.45rem; }
.fim-cat {
  font-family: var(--font-display);
  font-size: 1rem; color: #C8972A;
  margin-bottom: 0.9rem; padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(200,151,42,0.28);
  line-height: 1.3;
}

/* List */
.fim-list { list-style: none; padding: 0; margin: 0; }
.fim-list li {
  color: #D4C5A3; font-size: 0.86rem;
  padding: 0.28rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: baseline;
  gap: 0.4rem; flex-wrap: wrap; line-height: 1.4;
}
.fim-list li:last-child { border-bottom: none; }
.fim-list li::before { content: "•"; color: #C8972A; flex-shrink: 0; }
.fim-dish { font-weight: 500; color: #E8D9BC; }
.fim-dish em { font-style: normal; font-size: 0.78rem; color: #9A8C75; }
.fim-note { font-size: 0.72rem; color: var(--text-muted); font-style: italic; }

/* Dots */
.fim-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.8rem; }
.fim-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(200,151,42,0.25);
  cursor: pointer; transition: all 0.22s ease;
  display: inline-block; border: none;
}
.fim-dot.active { background: #C8972A; width: 26px; border-radius: 4px; }

/* Responsive */
@media (max-width: 900px) {
  .fim-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .fim-tabs { gap: 0.35rem; }
  .fim-tab { font-size: 0.7rem; padding: 0.38rem 0.72rem; }
  .fim-grid { grid-template-columns: 1fr; }
}

/* ===== IMAGE MENU GALLERY ===== */
.menu-img-gallery {
  margin-top: 2.5rem;
}

.menu-img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.menu-img-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(200,151,42,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  aspect-ratio: 3/4;
  background: #f5e9c8;
}

.menu-img-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  border-color: #C8972A;
}

.menu-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.menu-img-item:hover img {
  transform: scale(1.04);
}

.menu-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(60,20,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.menu-img-item:hover .menu-img-overlay {
  opacity: 1;
}

.menu-img-overlay span {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(200,151,42,0.85);
  padding: 0.4rem 1rem;
  border-radius: 20px;
}

.menu-img-hint {
  text-align: center;
  margin-top: 1rem;
  color: #8B5E1A;
  font-size: 0.88rem;
  opacity: 0.75;
}

/* Lightbox */
.menu-img-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,5,0,0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.menu-img-lightbox.active {
  display: flex;
}

.menu-img-lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  display: block;
}

.menu-lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: rgba(200,151,42,0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.menu-lb-close:hover { background: #a36c10; }

.menu-lb-prev, .menu-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(200,151,42,0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.menu-lb-prev { left: 14px; }
.menu-lb-next { right: 14px; }
.menu-lb-prev:hover, .menu-lb-next:hover { background: #a36c10; }

.menu-lb-counter {
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 1024px) {
  .menu-img-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .menu-img-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
@media (max-width: 400px) {
  .menu-img-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}
