/* ===== GHAR KA SWAD — Styles ===== */

/* Google Fonts loaded in HTML */

:root {
  --cream:      #fdf6ec;
  --warm-white: #fff9f2;
  --brown-dark: #3b1f0e;
  --brown-mid:  #7a3e1d;
  --brown-light:#c47c3e;
  --gold:       #d4a537;
  --gold-light: #f0c96b;
  --green:      #4a6741;
  --green-light:#e8f0e6;
  --red-badge:  #c0392b;
  --text-main:  #2c1a0e;
  --text-muted: #8b6347;
  --shadow:     0 4px 24px rgba(59,31,14,0.10);
  --shadow-card:0 2px 12px rgba(59,31,14,0.12);
  --radius:     16px;
  --radius-sm:  8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-main);
  overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(59,31,14,0.95);
  backdrop-filter: blur(8px);
  padding: 0 5%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #e8d5b7;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--brown-dark) !important;
  padding: 7px 18px !important;
  border-radius: 20px !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2a1206 0%, #5c2d0e 50%, #3b1f0e 100%);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a537' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { }

.hero-eyebrow {
  display: inline-block;
  background: rgba(212,165,55,0.15);
  border: 1px solid rgba(212,165,55,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  background: rgba(212,165,55,0.12);
  border: 1.5px solid rgba(212,165,55,0.4);
  border-radius: 40px;
  padding: 10px 22px;
  box-shadow: 0 0 18px rgba(212,165,55,0.15);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: #d4b07a;
  letter-spacing: 0.4px;
  font-weight: 600;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #fff8ee;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-title span {
  color: var(--gold-light);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #c8a882;
  margin-bottom: 14px;
}

.hero-party {
  font-size: 0.88rem;
  color: var(--gold-light);
  background: rgba(212,165,55,0.1);
  border: 1px solid rgba(212,165,55,0.25);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-desc {
  font-size: 1rem;
  color: #b89474;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-primary:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold-light);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  border: 1.5px solid rgba(212,165,55,0.5);
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(212,165,55,0.1);
  border-color: var(--gold-light);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: block;
  margin: 0 auto;
}

.hero-badge {
  position: absolute;
  top: -16px;
  right: 10%;
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 10px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(212,165,55,0.4);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ===== SECTION COMMON ===== */
section { padding: 80px 5%; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-eyebrow {
  display: inline-block;
  color: var(--brown-mid);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== ABOUT ===== */
#about {
  background: var(--warm-white);
}

.about-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.about-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-text strong {
  color: var(--brown-mid);
}

.about-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

.chip {
  background: var(--green-light);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(74,103,65,0.2);
}

/* ===== MENU ===== */
#menu {
  background: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(59,31,14,0.16);
}

.menu-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.menu-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-combo      { background: #fef3cd; color: #856404; }
.badge-preorder   { background: var(--green-light); color: var(--green); }
.badge-egg        { background: #fde8e8; color: var(--red-badge); }
.badge-new        { background: #e0f0ff; color: #1a5fb4; }
.badge-instock    { background: #d4f5e2; color: #1a7a45; }
.badge-outofstock { background: #fde8e8; color: #b91c1c; }
.badge-popular    { background: #fff0d4; color: #92580a; }

.menu-card-tagline {
  font-size: 0.78rem;
  color: var(--brown-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 4px;
}

.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.menu-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0e8dc;
}

.menu-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-mid);
}

.menu-card-price.price-request {
  font-size: 1rem;
  color: var(--green);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.menu-card-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brown-dark);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
}

.menu-card-order:hover { background: var(--brown-mid); }

/* Out of stock state */
.card-oos { opacity: 0.6; }
.card-oos .menu-card-img { filter: grayscale(60%); }

.out-of-stock-btn {
  display: inline-flex;
  align-items: center;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: not-allowed;
}

/* combo card highlight */
.menu-card.combo-highlight {
  border: 2px solid var(--gold);
}

.menu-card.combo-highlight::before {
  content: '⭐ Best Value';
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== COMING SOON ===== */
#coming-soon {
  background: linear-gradient(160deg, #1e0d04 0%, #3b1f0e 100%);
  padding: 80px 5%;
}

#coming-soon .section-eyebrow { color: var(--gold-light); }
#coming-soon .section-title   { color: #fff8ee; }
#coming-soon .section-subtitle{ color: #b89474; }

.coming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 36px;
}

.coming-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,165,55,0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
  backdrop-filter: blur(4px);
}

.coming-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,165,55,0.5);
}

.coming-emoji {
  font-size: 2.6rem;
  margin-bottom: 12px;
  display: block;
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(212,165,55,0.15);
  border: 1px solid rgba(212,165,55,0.4);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 14px;
}

.coming-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #fff8ee;
  margin-bottom: 10px;
}

.coming-desc {
  font-size: 0.88rem;
  color: #a08060;
  line-height: 1.65;
  margin-bottom: 16px;
}

.coming-tag {
  display: inline-block;
  background: rgba(74,103,65,0.3);
  color: #7de0a0;
  border: 1px solid rgba(125,224,160,0.2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
}

.coming-note {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #b89474;
  line-height: 1.6;
}

.coming-wa-link {
  color: #7de0a0;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
.coming-wa-link:hover { color: #25D366; }

/* ===== COMBOS ===== */
#combos {
  background: var(--warm-white);
}

.combos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.combo-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.combo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(59,31,14,0.16);
}

.combo-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.combo-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.combo-save-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.combo-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.combo-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.combo-item-tag {
  background: var(--green-light);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 10px;
}

.combo-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.combo-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f0e8dc;
}

.combo-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.combo-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-mid);
}

.combo-original {
  font-size: 0.88rem;
  color: #bbb;
  text-decoration: line-through;
}

/* ===== AVAILABILITY ===== */
#availability {
  background: var(--brown-dark);
  color: #fff;
}

#availability .section-eyebrow { color: var(--gold-light); }
#availability .section-title   { color: #fff8ee; }
#availability .section-subtitle{ color: #b89474; }

.avail-table-wrap {
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.avail-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.04);
}

.avail-table thead th {
  background: rgba(212,165,55,0.15);
  color: var(--gold-light);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  text-align: left;
}

.avail-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}

.avail-table tbody tr:hover { background: rgba(255,255,255,0.04); }

.avail-table tbody td {
  padding: 14px 24px;
  font-size: 0.95rem;
}

.avail-table .day-col { color: #e8d5b7; font-weight: 600; }
.avail-table .hours-col.open  { color: #7de0a0; }
.avail-table .hours-col.closed{ color: #e07d7d; opacity: 0.8; }

.avail-table .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.dot-open   { background: #7de0a0; box-shadow: 0 0 6px rgba(125,224,160,0.6); }
.dot-closed { background: #e07d7d; }

.avail-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: #b89474;
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: var(--warm-white);
  overflow: hidden;
}

/* Prev / Next controls wrapper */
.testi-controls-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.testi-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--brown-mid);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 3;
}
.testi-btn:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

.testimonials-track-wrap {
  overflow: hidden;
  position: relative;
  flex: 1;
}

.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--warm-white), transparent);
}
.testimonials-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--warm-white), transparent);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 10px 0 20px;
  /* transform controlled by JS */
}

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  width: 320px;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--gold);
  position: relative;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testi-star           { font-size: 1rem; }
.testi-star.full      { color: var(--gold); }
.testi-star.half      { color: var(--gold); opacity: 0.6; }
.testi-star.empty     { color: #ddd; }

.testi-text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 18px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brown-dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-name  { font-weight: 700; font-size: 0.9rem; color: var(--brown-dark); }
.testi-item  { font-size: 0.78rem; color: var(--text-muted); }

/* ===== ORDER CTA ===== */
#order {
  background: linear-gradient(135deg, #3b1f0e, #5c2d0e);
  text-align: center;
  padding: 80px 5%;
}

#order .section-title  { color: #fff8ee; }
#order .section-subtitle { color: #b89474; margin-bottom: 36px; }

.order-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(37,211,102,0.35);
  transition: transform 0.2s, background 0.2s;
}

.order-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
}

.order-note {
  margin-top: 20px;
  color: #b89474;
  font-size: 0.85rem;
}

/* ===== FOOTER ===== */
footer {
  background: #1e0d04;
  color: #7a5a42;
  text-align: center;
  padding: 32px 5%;
  font-size: 0.85rem;
}

footer strong { color: var(--gold-light); font-family: 'Playfair Display', serif; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s;
  animation: pulse 2.5s infinite;
}

.whatsapp-float:hover { transform: scale(1.12); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}

/* ===== HAMBURGER ===== */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-desc { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-image img { max-width: 320px; }

  .nav-burger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: rgba(30,10,2,0.98);
    flex-direction: column;
    align-items: center