/* ============================================================
   DARA CAFE — Dark Theme Style Sheet
   Aesthetic: Nocturnal neon-lit cafe — deep blacks, warm amber
   glow, golden accents, rich shadows & atmospheric depth
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500&family=Instrument+Serif:ital@0;1&display=swap');

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg-base:      #0a0804;
  --bg-surface:   #110e09;
  --bg-card:      #181208;
  --bg-elevated:  #1f1810;
  --bg-overlay:   #261e13;

  --amber:        #808000;
  --amber-glow:   #bbf54e;
  --amber-dim:    #9db022;
  --amber-soft:   rgba(232,144,58,0.12);
  --gold:         #a4d443;
  --gold-light:   #bdf06a;
  --olive:        #808000;

  --cream:        #faf0dc;
  --text:         #e8d9c0;
  --text-muted:   #8a7560;
  --text-dim:     #5a4a38;
  --white:        #ffffff;

  --green:        #3aad45;
  --red:          #e03535;

  --neon-amber:   0 0 12px rgba(145, 164, 18, 0.8), 0 0 32px rgba(167, 190, 13, 0.4), 0 0 64px rgba(105, 148, 11, 0.2);
  --neon-olive:   0 0 12px rgba(145, 164, 18, 0.8), 0 0 32px rgba(167, 190, 13, 0.4), 0 0 64px rgba(105, 148, 11, 0.2);
  --neon-gold:    0 0 10px rgba(212,168,67,0.7), 0 0 28px rgba(212,168,67,0.35);
  --glow-card:    0 4px 30px rgba(0,0,0,0.6), 0 0 0 1px rgba(232,144,58,0.08);
  --glow-hover:   0 8px 50px rgba(0,0,0,0.8), 0 0 0 1px rgba(232,144,58,0.2), 0 0 30px rgba(232,144,58,0.08);
  --shadow-deep:  0 20px 60px rgba(0,0,0,0.7);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-price:   'DM Sans', sans-serif;
  --font-serif:   'Instrument Serif', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-base);
  color: var(--text);
  font-family: var(--font-body);
  cursor: none;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9997;
  opacity: 0.4;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); }

/* ── CUSTOM CURSOR ──────────────────────────────────────────── */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--amber-glow);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  box-shadow: var(--neon-amber);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.4;
  box-shadow: 0 0 10px rgba(232,144,58,0.3);
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 54px; height: 54px; opacity: 0.25; }

/* ── LOADER ─────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0;
  background: var(--bg-base);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,144,58,0.08) 0%, transparent 70%);
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; position: relative; }
.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.5s ease forwards;
  text-shadow: var(--neon-gold);
}
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(232,144,58,0.15);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber-dim), var(--amber-glow));
  border-radius: 10px;
  width: 0%;
  animation: loadFill 1.8s ease forwards 0.3s;
  box-shadow: 0 0 10px var(--amber);
}
@keyframes loadFill { to { width: 100%; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(10,8,4,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(232,144,58,0.15), 0 4px 30px rgba(0,0,0,0.6);
  padding: 0.8rem 5%;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.02em;
  transition: text-shadow var(--transition);
}
#navbar.scrolled .nav-logo { text-shadow: var(--neon-gold); }
.logo-d { color: var(--olive); text-shadow: var(--neon-olive); }

.nav-links { display: flex; gap: 2.2rem; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(232,217,192,0.65);
  transition: color var(--transition), text-shadow var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--amber);
  box-shadow: 0 0 6px var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--amber-glow); text-shadow: 0 0 16px rgba(232,144,58,0.5); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-order-btns { display: flex; gap: 0.6rem; }
.btn-order {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.45rem 0.9rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  border: none;
}
.btn-order:hover { transform: translateY(-2px); filter: brightness(1.15); }
.btn-order img { height: 16px; width: auto; }
.btn-order.swiggy { background: #fc8019; color: #fff; box-shadow: 0 4px 16px rgba(252,128,25,0.35); }
.btn-order.zomato { background: #e23744; color: #fff; box-shadow: 0 4px 16px rgba(226,55,68,0.35); }
.btn-order.swiggy img { filter: brightness(0) invert(1); }
.btn-order.zomato img { filter: brightness(0) invert(1); height: 14px; }
.btn-order.swiggy:hover { box-shadow: 0 6px 24px rgba(252,128,25,0.6); }
.btn-order.zomato:hover { box-shadow: 0 6px 24px rgba(226,55,68,0.6); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 4px;
}

/* ── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg-base);
  z-index: 9000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,144,58,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin-bottom: 1rem; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; color: var(--text);
  transition: color var(--transition), text-shadow var(--transition);
}
.mobile-menu a:hover { color: var(--amber-glow); text-shadow: var(--neon-amber); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--text-muted);
  font-size: 1.4rem; cursor: pointer; transition: color var(--transition);
}
.mobile-close:hover { color: var(--amber); }
.mobile-order { display: flex; gap: 0.8rem; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-img.active { opacity: 1; }
.hero-img-1 { background-image: url('images/crispy-chilli-potato-dhaara-cafe-restaurant.jpg') }
.hero-img-2 { background-image: url('images/rooftop-cafe-experience-dhaara-cafe-restaurant-barhalganj.jpg'); }
.hero-img-3 { background-image: url('images/veg-spring-rolls-dhaara-cafe-barhalganj.jpg'); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,8,4,0.55) 0%, rgba(10,8,4,0.15) 40%, rgba(10,8,4,0.75) 100%),
    linear-gradient(90deg, rgba(10,8,4,0.7) 0%, transparent 60%);
}
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(232,144,58,0.06) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 8%; max-width: 760px;
}
.hero-sub {
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 1.2rem;
  opacity: 0; transform: translateY(24px);
  animation: heroReveal 0.8s ease forwards 2s;
  text-shadow: 0 0 20px rgba(232,144,58,0.6);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.08;
  color: var(--cream); margin-bottom: 1.4rem;
  opacity: 0; transform: translateY(24px);
  animation: heroReveal 0.8s ease forwards 2.2s;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero-title em { color: var(--amber-glow); font-style: italic; text-shadow: var(--neon-amber); }
.hero-desc {
  font-size: 1.05rem; color: rgba(232,217,192,0.7);
  font-weight: 300; line-height: 1.8; max-width: 460px; margin-bottom: 2.4rem;
  opacity: 0; transform: translateY(24px);
  animation: heroReveal 0.8s ease forwards 2.4s;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(24px);
  animation: heroReveal 0.8s ease forwards 2.6s;
}
@keyframes heroReveal { to { opacity: 1; transform: none; } }

.btn-primary {
  display: inline-block; padding: 0.9rem 2.2rem;
  background: var(--amber); color: var(--bg-base);
  border-radius: 50px; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em; border: 2px solid var(--amber);
  transition: all var(--transition);
  box-shadow: 0 0 20px rgba(232,144,58,0.4), 0 4px 20px rgba(0,0,0,0.4);
}
.btn-primary:hover {
  background: var(--amber-glow); border-color: var(--amber-glow);
  transform: translateY(-3px);
  box-shadow: var(--neon-amber), 0 8px 30px rgba(0,0,0,0.5);
}
.btn-ghost {
  display: inline-block; padding: 0.9rem 2.2rem;
  background: transparent; color: var(--cream);
  border-radius: 50px; border: 1.5px solid rgba(232,217,192,0.3);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em;
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--amber); color: var(--amber-glow);
  background: rgba(232,144,58,0.08);
  box-shadow: 0 0 20px rgba(232,144,58,0.15);
  transform: translateY(-3px);
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 8%;
  display: flex; align-items: center; gap: 0.8rem;
  color: rgba(232,217,192,0.4);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; z-index: 2;
}
.scroll-line {
  width: 50px; height: 1px;
  background: linear-gradient(90deg, var(--amber), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4;width:50px} 50%{opacity:1;width:70px} }
.hero-dots {
  position: absolute; bottom: 2.5rem; right: 8%;
  display: flex; gap: 0.5rem; z-index: 2;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(232,217,192,0.25); cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.dot.active { background: var(--amber); transform: scale(1.3); box-shadow: 0 0 8px var(--amber); }

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee-strip {
  background: linear-gradient(90deg, var(--bg-elevated), var(--bg-overlay), var(--bg-elevated));
  overflow: hidden; padding: 0.9rem 0;
  border-top: 1px solid rgba(232,144,58,0.15);
  border-bottom: 1px solid rgba(232,144,58,0.15);
  position: relative;
}
.marquee-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg-elevated) 0%, transparent 8%, transparent 92%, var(--bg-elevated) 100%);
  z-index: 1; pointer-events: none;
}
.marquee-track {
  display: flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display); font-size: 0.85rem; font-style: italic;
  color: var(--amber); letter-spacing: 0.05em;
  text-shadow: 0 0 12px rgba(232,144,58,0.4);
}
.marquee-track .sep { font-style: normal; font-size: 0.6rem; opacity: 0.5; color: var(--amber-dim); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTION COMMON ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--amber); font-weight: 600; display: block; margin-bottom: 0.8rem;
  text-shadow: 0 0 16px rgba(232,144,58,0.5);
}
.section-label.light { color: var(--amber-glow); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; line-height: 1.15; color: var(--cream);
}
.section-title em { color: var(--amber-glow); font-style: italic; text-shadow: var(--neon-amber); }

/* ── ABOUT ───────────────────────────────────────────────────── */
.about {
  padding: 7rem 8%;
  background: var(--bg-surface);
  position: relative; overflow: hidden;
}
.about::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,144,58,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.about::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center; position: relative;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-deep), 0 0 0 1px rgba(232,144,58,0.1);
}
.about-img-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease, filter 0.5s ease;
  filter: brightness(0.85) saturate(0.9);
}
.about-img-main:hover img { transform: scale(1.04); filter: brightness(0.95) saturate(1); }
.about-img-small {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 42%; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 3px solid rgba(232,144,58,0.25); aspect-ratio: 1;
}
.about-img-small img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); }
.about-badge {
  position: absolute; top: 2rem; right: -2rem;
  width: 80px; height: 80px; background: var(--amber); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--neon-amber); text-align: center;
}
.badge-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--bg-base); line-height: 1; }
.badge-text { font-size: 0.55rem; color: rgba(10,8,4,0.75); text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.3; }
.about-text { padding-left: 1rem; }
.about-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 1.2rem; font-size: 1rem; }
.about-stats {
  display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(232,144,58,0.12);
}
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900;
  color: var(--amber-glow); text-shadow: 0 0 20px rgba(232,144,58,0.4);
}
.stat-label {
  display: block; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-dim);
}

/* ── GALLERY ─────────────────────────────────────────────────── */
.gallery {
  padding: 7rem 5%; background: var(--bg-base); position: relative;
}
.gallery::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 80%; height: 60%;
  background: radial-gradient(ellipse, rgba(232,144,58,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px; gap: 0.8rem; position: relative;
}
.gallery-item {
  position: relative; border-radius: var(--radius-md);
  overflow: hidden; cursor: zoom-in;
  border: 1px solid rgba(232,144,58,0.06);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
  filter: brightness(0.7) saturate(0.8);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.9) saturate(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,4,0.85) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 1.2rem;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--amber-glow); text-shadow: 0 0 12px rgba(232,144,58,0.6);
}

/* ── MENU SECTION ───────────────────────────────────────────── */
.menu-section {
  padding: 7rem 5%; background: var(--bg-surface); position: relative;
}
.menu-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(232,144,58,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(212,168,67,0.03) 0%, transparent 50%);
  pointer-events: none;
}
.menu-tabs {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  justify-content: center; margin-bottom: 3rem;
}
.tab-btn {
  padding: 0.6rem 1.5rem; border-radius: 50px;
  border: 1px solid rgba(232,144,58,0.2);
  background: rgba(232,144,58,0.04);
  color: var(--text-muted); font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--amber); color: var(--amber); background: rgba(232,144,58,0.08); }
.tab-btn.active {
  background: var(--amber); border-color: var(--amber); color: var(--bg-base); font-weight: 700;
  box-shadow: 0 0 16px rgba(232,144,58,0.4), 0 4px 16px rgba(0,0,0,0.4);
}
.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; }
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.4rem;
}
.menu-card {
  background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--glow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid rgba(232,144,58,0.07);
  height: auto;
}
.menu-card:hover {
  transform: translateY(-6px); box-shadow: var(--glow-hover);
  border-color: rgba(232,144,58,0.18);
}
.menu-card-img { height: 180px; overflow: hidden; position: relative; }
.menu-card-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(10,8,4,0.6), transparent);
  pointer-events: none;
}
.menu-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.75) saturate(0.85);
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); filter: brightness(0.9) saturate(1.1); }
.menu-card-info { padding: 1.2rem; }
.menu-card-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem;
}
.menu-card-top h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--cream); flex: 1; margin-right: 0.5rem;
}
.veg-badge { display: inline-block; width: 16px; height: 16px; border-radius: 2px; flex-shrink: 0; }
.veg-badge.veg {
  border: 2px solid var(--green);
  background: radial-gradient(circle at 50% 50%, var(--green) 40%, transparent 40%);
  box-shadow: 0 0 6px rgba(58,173,69,0.4);
}
.veg-badge.nonveg {
  border: 2px solid var(--red);
  background: radial-gradient(circle at 50% 50%, var(--red) 40%, transparent 40%);
  box-shadow: 0 0 6px rgba(224,53,53,0.4);
}
.menu-card-info > p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 0.9rem; }
.menu-card-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.7rem; border-top: 1px solid rgba(232,144,58,0.08);
}
.price {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--amber-glow); text-shadow: 0 0 12px rgba(232,144,58,0.4);
}
.price-half {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--white); text-shadow: 0 0 12px rgba(232,144,58,0.4);
}
.price-right {
  font-family: var(--font-display); padding: 0.2rem 0.6rem; font-size: 1.2rem; font-weight: 700;
  color: var(--amber-glow); text-shadow: 0 0 12px rgba(232,144,58,0.4);
}
.price-full {
  font-family: var(--font-display); padding: 0.2rem 0.6rem; font-size: 1.2rem; font-weight: 700;
  color: var(--white); text-shadow: 0 0 12px rgba(232,144,58,0.4);
}
.tag {
  font-size: 0.68rem; padding: 0.2rem 0.6rem; border-radius: 50px;
  background: rgba(232,144,58,0.1); color: var(--text-dim);
  border: 1px solid rgba(232,144,58,0.15); font-weight: 500;
}
.tag.hot { background: rgba(232,144,58,0.12); color: var(--amber); border-color: rgba(232,144,58,0.2); }
.menu-footer-note {
  text-align: center; margin-top: 2.5rem; font-size: 0.78rem; color: var(--text-dim);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap;
}

/* ── ORDER CTA ───────────────────────────────────────────────── */
.order-cta {
  background: var(--bg-base); padding: 6rem 5%;
  text-align: center; position: relative; overflow: hidden;
}
.order-cta::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(232,144,58,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.order-cta-inner { position: relative; }
.order-cta-inner h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: var(--cream); margin-bottom: 1rem;
}
.order-cta-inner h2 em { color: var(--amber-glow); font-style: italic; text-shadow: var(--neon-amber); }
.order-cta-inner p {
  color: var(--text-muted); font-size: 1rem; max-width: 460px;
  margin-inline: auto; margin-bottom: 2.5rem; line-height: 1.7;
}
.order-btns { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.btn-order-big {
  display: inline-flex; align-items: center; gap: 0.9rem;
  padding: 1rem 2.2rem; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  border: none;
}
.btn-order-big:hover { transform: translateY(-4px); filter: brightness(1.1); }
.btn-order-big img { height: 22px; width: auto; filter: brightness(0) invert(1); }
.btn-order-big.swiggy { background: #fc8019; color: #fff; box-shadow: 0 6px 24px rgba(252,128,25,0.4); }
.btn-order-big.swiggy:hover { box-shadow: 0 10px 36px rgba(252,128,25,0.65); }
.btn-order-big.zomato { background: #e23744; color: #fff; box-shadow: 0 6px 24px rgba(226,55,68,0.4); }
.btn-order-big.zomato:hover { box-shadow: 0 10px 36px rgba(226,55,68,0.65); }
.btn-order-big span { display: flex; flex-direction: column; text-align: left; line-height: 1.2; font-weight: 300; font-size: 0.78rem; }
.btn-order-big strong { font-size: 0.98rem; font-weight: 700; }

/* ── RESERVATION ─────────────────────────────────────────────── */
/* GLOBAL FIX */

/* FULL SCREEN */
.rsrv-wrapper {
    display: flex;
    min-height: 100vh;
    padding-top: 120px; /* navbar gap */
}

/* LEFT FORM */
.rsrv-left {
    flex: 1;
    padding: 60px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(25px);
}

/* TITLE */
.rsrv-left h1 {
    margin-bottom: 40px;
    font-size: 28px;
}

/* FIELD */
.field {
    position: relative;
    margin-bottom: 22px;
}

.field input,
.field textarea {
    width: 100%;
    padding: 16px;
    padding-top: 20px;

    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);

    background: rgba(255,255,255,0.05);
    color: white;

    outline: none;
    transition: 0.3s;
}

/* GLOW */
.field input:focus,
.field textarea:focus {
    border-color: #808000;
    box-shadow: 0 0 18px rgba(195, 255, 0, 0.7);
}

/* LABEL */
.field label {
    position: absolute;
    top: -8px;
    left: 14px;

    font-size: 11px;
    color: #808000;

    background: #0f0f0f;
    padding: 0 6px;

    pointer-events: none;
}

/* ROW */
.row {
    display: flex;
    gap: 15px;
}

/* BUTTON */
#rsrv-submit {
    width: 100%;
    padding: 16px;

    background: linear-gradient(135deg, #808000, #316203);
    border: none;
    border-radius: 14px;

    font-size: 16px;
    font-weight: 500;

    cursor: pointer;
    transition: 0.3s;
}

#rsrv-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(195, 255, 0, 0.7);
}

/* RIGHT SIDE */
.rsrv-right {
    flex: 1;
    position: relative;

    background: linear-gradient(135deg, #808000, #316203);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;
}

/* OVERLAY EFFECT */
.rsrv-right .overlay {
    position: absolute;
    width: 300px;
    height: 300px;

    background: rgba(255,255,255,0.1);
    border-radius: 50%;

    top: -50px;
    right: -50px;
}

/* CONTENT */
.rsrv-right .content {
    text-align: center;
    max-width: 420px;
}

.rsrv-right h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.rsrv-right p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.info {
    margin: 10px 0;
    font-size: 15px;
}

/* 🔥 MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {

    .rsrv-wrapper {
        flex-direction: column;
        padding-top: 90px;
    }

    .rsrv-left {
        width: 100%;
        padding: 25px 20px;
    }

    .rsrv-right {
        width: 100%;
        padding: 35px 20px;
        text-align: center;
    }

    .rsrv-right h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .rsrv-right p {
        font-size: 14px;
    }

    .info {
        font-size: 14px;
    }

    /* STACK FIELDS */
    .row {
        flex-direction: column;
        gap: 15px;
    }

    /* INPUT FIX */
    .field input,
    .field textarea {
        font-size: 14px;
        padding: 14px;
        padding-top: 18px;
    }

    /* BUTTON */
    #rsrv-submit {
        margin-top: 15px;
        font-size: 15px;
    }

    /* OVERLAY SMALL */
    .rsrv-right .overlay {
        width: 180px;
        height: 180px;
        top: -30px;
        right: -30px;
    }
}

/* POPUP */
.rsrv-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
cursor: default;
    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.85);
    z-index: 9999;
}

.rsrv-popup-box {
    background: rgba(30,30,30,0.95);
    backdrop-filter: blur(20px);

    padding: 30px;
    border-radius: 20px;
cursor: auto;
    text-align: center;
    color: white;

    width: 90%;
    max-width: 400px;

    animation: pop 0.4s ease;
}

.popup-footer {
    margin-top: 10px;
    opacity: 0.8;
}

@keyframes pop {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* POPUP CLOSE BUTTON */
#popup-close-btn {
    margin-top: 18px;
    padding: 10px 22px;

    background: linear-gradient(135deg, #808000, #316203);
    border: none;
    border-radius: 10px;

    color: white;
    font-size: 14px;
    font-weight: 500;

    cursor: pointer;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
#popup-close-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 18px rgba(195, 255, 0, 0.7);
}

/* CLICK EFFECT */
#popup-close-btn:active {
    transform: scale(0.95);
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials {
  padding: 7rem 5%; background: var(--bg-base); overflow: hidden; position: relative;
}
.testimonials::before {
  content: '';
  position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,168,67,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.testimonials-slider { overflow: hidden; }
.testimonial-track { display: flex; gap: 1.5rem; transition: transform 0.5s ease; }
.testimonial-card {
  min-width: calc(33.333% - 1rem);
  background: var(--bg-card); border-radius: var(--radius-md); padding: 2rem;
  box-shadow: var(--glow-card); border: 1px solid rgba(232,144,58,0.08);
  flex-shrink: 0; transition: border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { border-color: rgba(232,144,58,0.2); box-shadow: var(--glow-hover); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 0.8rem; text-shadow: 0 0 8px rgba(212,168,67,0.5); }
.testimonial-card > p {
  color: var(--text-muted); line-height: 1.8; font-size: 0.95rem;
  font-style: italic; margin-bottom: 1.5rem; font-family: var(--font-serif);
}
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-author img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(232,144,58,0.35);
  box-shadow: 0 0 10px rgba(232,144,58,0.2);
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--cream); }
.testimonial-author span { font-size: 0.75rem; color: var(--text-dim); }
.testimonial-controls {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem;
}
.testimonial-controls button {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(232,144,58,0.2);
  background: rgba(232,144,58,0.05);
  cursor: pointer; color: var(--text-muted); font-size: 0.9rem;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.testimonial-controls button:hover {
  background: var(--amber); color: var(--bg-base); border-color: var(--amber);
  box-shadow: 0 0 16px rgba(232,144,58,0.4);
}
.testimonial-dots-wrap { display: flex; gap: 0.4rem; }
.t-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(232,144,58,0.15); cursor: pointer; transition: all var(--transition);
}
.t-dot.active { background: var(--amber); transform: scale(1.3); box-shadow: 0 0 6px var(--amber); }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--bg-base);
  border-top: 1px solid rgba(232,144,58,0.12);
  color: var(--text-muted);
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem; padding: 5rem 8% 4rem;
}
.footer-logo {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900;
  color: var(--cream); margin-bottom: 1rem; text-shadow: var(--neon-gold);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 300px; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(232,144,58,0.15);
  background: rgba(232,144,58,0.04);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 0.9rem; transition: all var(--transition);
}
.social-links a:hover {
  background: var(--amber); border-color: var(--amber); color: var(--bg-base);
  box-shadow: 0 0 14px rgba(232,144,58,0.5);
}
.footer-links-col h5 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--cream); margin-bottom: 1.2rem;
}
.footer-links-col ul li {
  margin-bottom: 0.65rem; font-size: 0.86rem;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.footer-links-col ul li i { color: var(--amber); margin-top: 3px; flex-shrink: 0; }
.footer-links-col a { transition: color var(--transition); }
.footer-links-col a:hover { color: var(--amber-glow); }
.footer-order-btns { display: flex; gap: 0.6rem; margin-top: 0.5rem; flex-wrap: wrap; }
.btn-order.sm { padding: 0.35rem 0.8rem; font-size: 0.72rem; }
.footer-bottom {
  border-top: 1px solid rgba(232,144,58,0.08);
  text-align: center; padding: 1.5rem 8%;
  font-size: 0.8rem; color: var(--text-dim);
}

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px; background: var(--amber);
  color: var(--bg-base); border: none; border-radius: 50%;
  cursor: pointer; z-index: 999;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--neon-amber); }

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.scroll-reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.in-view { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { max-width: 500px; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand { grid-column: 1/-1; }
  .reservation-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-order-btns { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 5%; }
  .about { padding: 5rem 5%; }
  .gallery { padding: 5rem 5%; }
  .menu-section { padding: 5rem 5%; }
  .reservation { padding: 5rem 5%; }
  .testimonials { padding: 5rem 5%; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { min-width: calc(100% - 1rem); }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 5%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-img-small { right: -1rem; bottom: -1rem; width: 38%; }
  .about-stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .hero-btns { flex-direction: column; }
  .about-img-small { display: none; }
  .order-btns { flex-direction: column; align-items: center; }
  .menu-grid { grid-template-columns: 1fr; }
}

