/* ================================================================
   नारायणी किचन - Narayani Kitchen
   Styles: Warm Indian Home Kitchen Aesthetic
   ================================================================ */

/* ----------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --saffron: #E8813A;
  --saffron-dark: #C45E1A;
  --saffron-light: #F5A55C;
  --cream: #FDF6EC;
  --cream-dark: #F5E8D0;
  --brown: #6B3D1E;
  --brown-light: #8B5530;
  --brown-dark: #3D1F0A;
  --gold: #D4A017;
  --gold-light: #F0C040;
  --green: #4A7C59;
  --red-spice: #C0392B;
  --text-dark: #2C1810;
  --text-mid: #5C3D2E;
  --text-light: #8B7355;
  --white: #FFFFFF;
  --off-white: #FFFBF5;
  --shadow: rgba(107, 61, 30, 0.15);
  --shadow-strong: rgba(107, 61, 30, 0.30);

  /* Typography */
  --font-marathi: 'Tiro Devanagari Marathi', 'Noto Sans Devanagari', serif;
  --font-display: 'Yatra One', serif;
  --font-body: 'Poppins', 'Tiro Devanagari Marathi', sans-serif;

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 6rem);
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-marathi);
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ----------------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--brown-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p { font-size: clamp(0.9rem, 1.5vw, 1.05rem); }

/* ----------------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

section {
  padding: var(--section-pad) 0;
}

/* ----------------------------------------------------------------
   COMMON COMPONENTS
   ---------------------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.35em 1em;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
  text-transform: uppercase;
}

.section-tag.light {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

.section-title {
  margin-bottom: 0.8rem;
  color: var(--brown-dark);
}

.section-desc {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85em 1.8em;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 129, 58, 0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--saffron-dark), #A34A10);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 129, 58, 0.5);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--saffron-dark);
  font-weight: 700;
}
.btn-light:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn-lg { padding: 1em 2.2em; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-phone {
  background: var(--brown);
  color: var(--white);
}
.btn-phone:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  padding: 0.5em 1.2em;
  background: var(--saffron);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: var(--transition);
}
.btn-sm:hover { background: var(--saffron-dark); transform: translateY(-1px); }

.btn-whatsapp-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6em 1.4em;
  background: #25D366;
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  margin-top: 1rem;
  transition: var(--transition);
}
.btn-whatsapp-sm:hover {
  background: #1DA851;
  color: var(--white) !important;
}

.mobile-sticky-order { display: none; }

/* ----------------------------------------------------------------
   FLOATING WHATSAPP BUTTON
   ---------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white);
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
  
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 236, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--brown-dark);
  font-weight: 700;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--saffron);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.3rem, 1.5vw, 1.2rem);
  flex-wrap: wrap;
}

.nav-link {
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4em 0.6em;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--saffron); background: rgba(232, 129, 58, 0.08); }
.nav-link.active { color: var(--saffron); }

.nav-cta {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white) !important;
  padding: 0.5em 1.2em !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(232, 129, 58, 0.4);
  background: linear-gradient(135deg, var(--saffron-dark), #A34A10) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 1000px;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 24, 16, 0.75) 0%,
    rgba(61, 31, 10, 0.55) 50%,
    rgba(107, 61, 30, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 720px;
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--cream);
  padding: 0.4em 1.2em;
  border-radius: 50px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-accent {
  color: var(--gold-light);
  position: relative;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s 0.4s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeUp 0.9s 0.5s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  color: var(--white);
}
.stat strong {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--gold-light);
}
.stat span { font-size: 0.8rem; opacity: 0.85; font-family: var(--font-body); }

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2s infinite;
}

.scroll-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* ----------------------------------------------------------------
   TRUST STRIP
   ---------------------------------------------------------------- */
.trust-strip {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  padding: 1.5rem 0;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-icon { font-size: 1.2rem; }

/* ----------------------------------------------------------------
   FEATURED DISHES
   ---------------------------------------------------------------- */
.featured-dishes {
  background: var(--cream);
}

.dishes-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}

.dish-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px var(--shadow-strong);
}

.dish-img-wrap {
  position: relative;
  overflow: hidden;
}

.featured-card .dish-img-wrap { height: 260px; }
.dish-card:not(.featured-card) .dish-img-wrap { height: 200px; }

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dish-card:hover .dish-img { transform: scale(1.05); }

.dish-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--saffron);
  color: var(--white);
  padding: 0.3em 0.8em;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-body);
}
.dish-badge.spicy { background: var(--red-spice); }
.dish-badge.sweet { background: var(--gold); color: var(--brown-dark); }

.dish-info {
  padding: 1.2rem;
}

.dish-name { font-size: 1.15rem; margin-bottom: 0.4rem; }
.dish-desc { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.5; }

.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dish-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--saffron-dark);
  font-family: var(--font-display);
}

/* Desktop-only balance for featured dishes cards */
@media (min-width: 901px) {
  .featured-dishes .dishes-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
  .featured-dishes .featured-card { grid-column: auto; }
  .featured-dishes .dish-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .featured-dishes .dish-info {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .featured-dishes .featured-card .dish-img-wrap,
  .featured-dishes .dish-card:not(.featured-card) .dish-img-wrap { height: 220px; }
  .featured-dishes .dish-desc { flex: 1; }
  .featured-dishes .dish-footer {
    margin-top: auto;
    gap: 0.6rem;
  }
}

/* ----------------------------------------------------------------
   WHY CHOOSE US
   ---------------------------------------------------------------- */
.why-us { background: var(--off-white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}

.why-image {
  position: relative;
}

.why-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px var(--shadow-strong);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.why-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: 0 8px 30px var(--shadow-strong);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
}

.why-img-badge div { line-height: 1.3; }
.why-img-badge strong { color: var(--saffron-dark); font-family: var(--font-display); font-size: 1rem; }
.why-img-badge span { font-size: 0.78rem; color: var(--text-mid); font-family: var(--font-body); }

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-item:hover {
  background: var(--cream);
  transform: translateX(5px);
}

.why-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--saffron);
  opacity: 0.5;
  flex-shrink: 0;
  min-width: 2.5rem;
  line-height: 1;
  padding-top: 0.2rem;
}

.why-text h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--brown-dark);
}
.why-text p { font-size: 0.88rem; color: var(--text-mid); }

/* ----------------------------------------------------------------
   OUR STORY
   ---------------------------------------------------------------- */
.our-story {
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text {
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.story-text em { color: var(--saffron-dark); font-style: normal; font-weight: 600; }

.story-milestones {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--cream-dark);
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.milestone strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--saffron-dark); }
.milestone span { font-size: 0.78rem; color: var(--text-mid); font-family: var(--font-body); }

.story-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.story-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: 0 10px 30px var(--shadow);
}

.story-img-main { width: 100%; aspect-ratio: 4/3; }
.story-img-sub { width: 75%; aspect-ratio: 4/3; margin-left: auto; }

/* ----------------------------------------------------------------
   TRADITION
   ---------------------------------------------------------------- */
.tradition {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #5C2D0A 100%);
  position: relative;
  overflow: hidden;
}

.tradition::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(232, 129, 58, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(212, 160, 23, 0.1) 0%, transparent 50%);
}

.tradition .section-tag {
  background: rgba(255,255,255,0.2);
  color: var(--cream);
}

.tradition .section-title { color: var(--cream); }

.tradition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.tradition-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  color: var(--cream);
}

.tradition-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-5px);
}

.tradition-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.tradition-card h3 { color: var(--gold-light); margin-bottom: 0.7rem; font-size: 1.1rem; }
.tradition-card p { font-size: 0.88rem; color: rgba(253, 246, 236, 0.8); line-height: 1.6; }

/* ----------------------------------------------------------------
   OUR KITCHEN
   ---------------------------------------------------------------- */
.our-kitchen { background: var(--off-white); }

.kitchen-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.kitchen-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.kitchen-img-main {
  width: 100%;
  height: 700px;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.kitchen-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 24, 16, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  cursor: pointer;
}

.kitchen-main:hover .kitchen-overlay { opacity: 1; }

.kitchen-overlay span {
  background: rgba(255,255,255,0.9);
  color: var(--brown-dark);
  padding: 0.8em 1.5em;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-body);
}

.kitchen-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.kitchen-img-side {
  width: 100%;
  height: calc(50% - 0.75rem);
  object-fit: cover;
  border-radius: var(--radius-lg);
  flex: 1;
  aspect-ratio: 4/3;
}

.hygiene-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hygiene-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cream);
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-dark);
  font-family: var(--font-body);
}

.hygiene-icon { font-size: 1rem; flex-shrink: 0; }

/* ----------------------------------------------------------------
   TODAY'S SPECIAL
   ---------------------------------------------------------------- */
.todays-special {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  padding: 3rem 0;
}

.special-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.special-text h2 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.special-text h2 span { color: var(--gold-light); }
.special-text p { color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; font-size: 0.95rem; }

.special-price {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.price-old {
  text-decoration: line-through;
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  font-family: var(--font-body);
}

.price-new {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
}

.price-tag {
  background: var(--gold);
  color: var(--brown-dark);
  padding: 0.2em 0.8em;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-body);
}

.special-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.special-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.special-img-wrap:hover .special-img { transform: scale(1.05); }

/* ----------------------------------------------------------------
   MENU SECTION
   ---------------------------------------------------------------- */
.menu-section { background: var(--cream); }

.menu-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  background: var(--white);
  padding: 0.5rem;
  border-radius: 50px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 15px var(--shadow);
}

.menu-tab {
  padding: 0.6em 1.5em;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
}

.menu-tab.active {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  box-shadow: 0 4px 12px rgba(232, 129, 58, 0.4);
}

.menu-tab:hover:not(.active) { background: var(--cream); color: var(--saffron); }

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px var(--shadow-strong);
}

.menu-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.menu-details {
  padding: 1.2rem;
}

.menu-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.menu-head h3 { font-size: 1rem; color: var(--brown-dark); flex: 1; }
.menu-price { color: var(--saffron-dark); font-weight: 700; font-family: var(--font-display); font-size: 1.1rem; white-space: nowrap; }

.menu-details p { font-size: 0.83rem; color: var(--text-mid); margin-bottom: 0.8rem; line-height: 1.5; }

.menu-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.menu-tags span {
  background: var(--cream);
  color: var(--text-mid);
  font-size: 0.73rem;
  padding: 0.2em 0.6em;
  border-radius: 50px;
  font-family: var(--font-body);
}

/* ----------------------------------------------------------------
   FOOD GALLERY
   ---------------------------------------------------------------- */
.food-gallery { background: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.04);
  z-index: 1;
  box-shadow: 0 8px 25px var(--shadow-strong);
}

/* ----------------------------------------------------------------
   BENEFITS
   ---------------------------------------------------------------- */
.benefits { background: var(--cream); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px var(--shadow-strong);
}

.benefit-card:nth-child(1) { border-bottom-color: #4A7C59; }
.benefit-card:nth-child(2) { border-bottom-color: var(--gold); }
.benefit-card:nth-child(3) { border-bottom-color: var(--saffron); }
.benefit-card:nth-child(4) { border-bottom-color: var(--red-spice); }

.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.benefit-card h3 { margin-bottom: 0.7rem; font-size: 1rem; }
.benefit-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* ----------------------------------------------------------------
   ORDER SECTION
   ---------------------------------------------------------------- */
.order-section { background: var(--off-white); }

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.order-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
}

.order-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px var(--shadow-strong); }

.primary-order {
  background: linear-gradient(135deg, var(--brown-dark), #5C2D0A);
  color: var(--cream);
}
.primary-order h3 { color: var(--gold-light); }
.primary-order p { color: rgba(253, 246, 236, 0.85); }

.order-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.order-card h3 { margin-bottom: 0.7rem; }
.order-card p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.primary-order p { color: rgba(253,246,236,0.85); }

.delivery-info {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0;
}

.delivery-info li {
  font-size: 0.85rem;
  color: var(--text-mid);
  font-family: var(--font-body);
}

/* Order Form */
.order-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 8px 40px var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  text-align: center;
  color: var(--brown-dark);
}

.order-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8em 1em;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-marathi);
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232, 129, 58, 0.15);
}

.form-group textarea { resize: vertical; }

/* ----------------------------------------------------------------
   CTA BANNER
   ---------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--brown) 100%);
  padding: 3rem 0;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* ----------------------------------------------------------------
   REVIEWS
   ---------------------------------------------------------------- */
.reviews-section { background: var(--cream); }

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.stars { color: var(--gold); font-size: 1.4rem; letter-spacing: 0.1em; }
.overall-rating strong { font-size: 1.4rem; color: var(--brown-dark); font-family: var(--font-display); }
.overall-rating span { color: var(--text-mid); font-size: 0.9rem; font-family: var(--font-body); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 4rem;
  color: var(--saffron);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}

.review-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px var(--shadow-strong); }

.review-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--brown));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.reviewer-info { flex: 1; }
.reviewer-info strong { display: block; font-size: 0.95rem; color: var(--brown-dark); }
.reviewer-info span { font-size: 0.78rem; color: var(--text-light); font-family: var(--font-body); }

.review-stars { color: var(--gold); font-size: 0.9rem; }

.review-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0.8rem; }
.review-date { font-size: 0.75rem; color: var(--text-light); font-family: var(--font-body); }

/* ----------------------------------------------------------------
   CONTACT
   ---------------------------------------------------------------- */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 2px 10px var(--shadow);
  transition: var(--transition);
}

.contact-card:hover { transform: translateX(5px); box-shadow: 0 5px 20px var(--shadow); }

.contact-icon { font-size: 1.5rem; flex-shrink: 0; }

.contact-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  color: var(--brown-dark);
}

.contact-card p,
.contact-card a {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-family: var(--font-body);
}

.contact-card a { color: var(--saffron-dark); }
.contact-card a:hover { color: var(--saffron); }

.social-links {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-link {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  color: var(--text-mid);
  padding: 0.5em 1.2em;
  border-radius: 50px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  transition: var(--transition);
}

.social-link:hover { border-color: var(--saffron); color: var(--saffron); background: rgba(232, 129, 58, 0.05); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
}

.google-map {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--brown-dark);
  color: var(--cream);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding: 3.5rem 0 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-logo div { line-height: 1.3; }
.footer-logo strong { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); }
.footer-logo span { font-size: 0.78rem; color: rgba(253,246,236,0.7); font-family: var(--font-body); }

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(253, 246, 236, 0.75);
  line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(253, 246, 236, 0.75);
  font-family: var(--font-body);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--saffron-light); }

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(253, 246, 236, 0.75);
  font-family: var(--font-body);
  margin-bottom: 0.4rem;
}

.footer-contact a { color: var(--saffron-light); }
.footer-contact a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 0;
  margin: 0 clamp(1rem, 4vw, 2rem);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(253, 246, 236, 0.6);
  font-family: var(--font-body);
}

.footer-bottom a { color: rgba(253, 246, 236, 0.8); }

/* Desktop footer alignment: keep dev credit centered */
@media (min-width: 901px) {
  .footer-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
  }
  .footer-bottom > p:first-child {
    grid-column: 1;
    justify-self: start;
    min-width: 0;
  }
  .footer-bottom .dev-credit {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
    text-align: right;
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — TABLET (max 900px)
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .dishes-grid { grid-template-columns: 1fr 1fr; }
  .featured-card { grid-column: 1 / -1; }
  .featured-card .dish-img-wrap { height: 280px; }

  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-img { aspect-ratio: 16/9; }
  .why-img-badge { right: 1rem; }

  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .story-images { display: flex; gap: 1rem; }
  .story-img-main, .story-img-sub { flex: 1; width: auto; margin: 0; aspect-ratio: 4/3; }

  .tradition-grid { grid-template-columns: repeat(2, 1fr); }

  .kitchen-gallery { grid-template-columns: 1fr; }
  .kitchen-img-main { aspect-ratio: 16/9; }
  .kitchen-side { flex-direction: row; }
  .kitchen-img-side { flex: 1; }

  .hygiene-list { grid-template-columns: repeat(2, 1fr); }

  .special-banner { grid-template-columns: 1fr; }
  .special-img-wrap { order: -1; }

  .menu-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }

  .order-grid { grid-template-columns: 1fr 1fr; }
  .primary-order { grid-column: 1 / -1; }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .google-map { height: 300px; }

  .footer-content { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .cta-content { justify-content: center; text-align: center; }
}

/* Keep featured dish cards readable on small mobile widths */
@media (max-width: 768px) {
  .site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1200;
  }

  body {
    padding-top: 76px;
  }

  .site-footer {
    padding-bottom: calc(6rem + env(safe-area-inset-bottom));
  }

  .mobile-sticky-order {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
    border-radius: 0;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-body);
    box-shadow: 0 -6px 20px rgba(107, 61, 30, 0.28);
  }

  .mobile-sticky-order:hover {
    transform: none;
    background: linear-gradient(135deg, var(--saffron-dark), #A34A10);
    color: var(--white);
  }

  .nav-menu .nav-cta-item { display: none; }

  .footer-bottom .dev-credit {
    display: block;
    visibility: visible;
    opacity: 1;
  }

  .featured-dishes .dishes-grid { grid-template-columns: 1fr; }
  .featured-dishes .dish-footer { gap: 0.6rem; flex-wrap: wrap; }
  .featured-dishes .dish-price,
  .featured-dishes .btn-sm { white-space: nowrap; }

  /* Keep WhatsApp button right-aligned on mobile/tablet */
  .whatsapp-float {
    left: auto;
    right: 1.5rem;
    bottom: calc(6.4rem + env(safe-area-inset-bottom));
    transform: none;
    z-index: 1001;
  }

  .whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
  }
}

/* ----------------------------------------------------------------
   RESPONSIVE — MOBILE (max 600px)
   ---------------------------------------------------------------- */
@media (max-width: 600px) {
  html, body { overflow-x: hidden; }

  /* Nav */
  .nav-container { flex-wrap: wrap; }
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    width: 100%;
    background: transparent;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.4rem 0 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    overflow-x: visible;
  }
  .nav-menu.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: 0.6em 0.9em;
    font-size: 0.9rem;
    border-radius: var(--radius);
    border: 1px solid var(--cream-dark);
    background: var(--white);
    flex: 0 0 auto;
  }
  .nav-cta { text-align: center; margin-top: 0; }

  /* Hero */
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 1rem; }
  .hero-title { font-size: 2.2rem; }

  /* WhatsApp float — compact on mobile */
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 1rem; border-radius: 50%; }
  .whatsapp-float svg { width: 28px; height: 28px; }

  /* Sections */
  .dishes-grid { grid-template-columns: 1fr; }
  .tradition-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
    row-gap: 1.1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  .footer-links, .footer-contact { min-width: 0; }
  .footer-brand { text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-tagline { margin-inline: auto; }
  .dev-credit { margin-left: 0; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom .dev-credit {
    display: block;
    width: 100%;
    margin-top: 0.35rem;
  }
  .story-images { flex-direction: column; }
  .story-img-sub { width: 100%; }
  .hygiene-list { grid-template-columns: 1fr; }

  /* Kitchen section: stack side images cleanly on small phones */
  .kitchen-gallery { gap: 1rem; margin-bottom: 1.5rem; }
  .kitchen-side { flex-direction: column; gap: 1rem; }
  .kitchen-img-main,
  .kitchen-img-side {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    flex: none;
  }

  .hero-stats { flex-wrap: wrap; gap: 0.8rem; }
  .stat-divider { display: none; }

  .special-banner { padding: 1.5rem; }

  .cta-content { flex-direction: column; align-items: center; }
}

/* ----------------------------------------------------------------
   PRINT
   ---------------------------------------------------------------- */
@media print {
  .whatsapp-float, .mobile-sticky-order, .nav-toggle, .site-header { display: none; }
  body { color: #000; background: #fff; }
}

/* ----------------------------------------------------------------
   REDUCED MOTION
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  }

/* ----------------------------------------------------------------
   FOCUS STYLES (Accessibility)
   ---------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}
.hero-title{
font-family:'Tiro Devanagari Marathi', serif;
letter-spacing: normal;
}
h2 { 
  font-size: clamp(2.1rem, 3.5vw, 2.8rem); 
  font-family:'Tiro Devanagari Marathi', serif;
}
h3{
  font-family:'Tiro Devanagari Marathi', serif;
}
.dev-link{
color: var(--gold-light);
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
border-bottom: 1px dashed transparent;
}

.dev-link:hover{
color: var(--saffron);
border-bottom: 1px dashed var(--saffron);
}
.dev-credit{
margin-left:auto;
text-align:right;
}

@media (max-width: 600px) {
  .dev-credit {
    margin-left: 0;
    text-align: center;
  }
  .footer-contact .btn-whatsapp-sm {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
/* MOBILE NAV */
@media (max-width: 768px){

.nav-toggle{
  display:flex;
  flex-direction:column;
  gap:5px;
  z-index:1001;
}

.nav-toggle span{
  width:24px;
  height:2px;
  background:#6B3D1E;
  display:block;
  border-radius:2px;
}

/* MOBILE MENU */
/* ================= MOBILE MENU FIX ================= */

@media (max-width:768px){

.nav-menu{
  position:fixed;
  top:70px;
  left:0;
  width:100%;
  height:100vh;
  background:#FDF6EC;
  flex-direction:column;
  align-items:stretch;
  padding:25px;
  gap:10px;

  transform:translateY(-110%);
  opacity:0;
  transition:0.35s ease;
}

.nav-menu.open{
  transform:translateY(0);
  opacity:1;
}

.nav-menu li{
  width:100%;
}

.nav-link{
  display:block;
  width:100%;
  padding:14px 18px;
  font-size:18px;
  border-radius:10px;
  background:white;
  border:1px solid #F5E8D0;
}

.nav-link:hover{
  background:#FFF5E9;
}

/* CTA Button Fix */

.nav-cta{
  background:#E8813A;
  color:white !important;
  text-align:center;
  font-weight:600;
}

}
}
.nav-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2){
  opacity:0;
}

.nav-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* ===================== TIFFIN SERVICE ===================== */

.tiffin-service{
  background: var(--cream);
}

.tiffin-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1.5rem;
  align-items:stretch;
}

.tiffin-card{
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:2rem 1.5rem;
  text-align:center;
  box-shadow:0 4px 20px var(--shadow);
  transition:var(--transition);
  display:flex;
  flex-direction:column;
  align-items:center;
  height:100%;
}

.tiffin-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 35px var(--shadow-strong);
}

.tiffin-icon{
  font-size:2.5rem;
  margin-bottom:1rem;
}

.tiffin-card h3{
  margin-bottom:0.65rem;
}

.tiffin-intro{
  margin-bottom:1rem;
  color:var(--text-mid);
}

.tiffin-price{
  font-size:1.5rem;
  font-weight:700;
  color:var(--saffron-dark);
  margin:0.5rem 0 1rem;
}

.tiffin-features{
  text-align:left;
  margin:0 0 1.2rem;
  width:100%;
  display:grid;
  gap:0.45rem;
  flex:1;
}

.tiffin-card li{
  font-size:0.92rem;
  color:var(--text-mid);
  line-height:1.5;
}

.tiffin-cta{
  margin-top:auto;
  min-width:11rem;
}

.featured-tiffin{
  border:2px solid var(--saffron);
}

@media (max-width: 991px){
  .tiffin-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 700px){
  .tiffin-grid{
    grid-template-columns:1fr;
  }

  .tiffin-card{
    padding:1.7rem 1.25rem;
  }
}
/* ================================
   NON VEG MENU SECTION
================================ */

#nonveg-menu {
  background: var(--cream);
  padding: 80px 0;
}

/* Tabs */
#nonveg-menu .menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: #fff;
  padding: 6px;
  border-radius: 40px;
  width: fit-content;
  margin: 30px auto 40px;
}

/* Tab button */
#nonveg-menu .menu-tab {
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #444;
  transition: all 0.3s ease;
}

/* Active tab */
#nonveg-menu .menu-tab.active {
  background: var(--primary);
  color: orange;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Panels */
#nonveg-menu .menu-panel {
  display: none;
}

#nonveg-menu .menu-panel.active {
  display: block;
}

/* Grid */
#nonveg-menu .menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
#nonveg-menu .menu-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

#nonveg-menu .menu-card:hover {
  transform: translateY(-6px);
}

/* Image */
#nonveg-menu .menu-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Details */
#nonveg-menu .menu-details {
  padding: 18px;
}

#nonveg-menu .menu-details h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

/* Tags */
#nonveg-menu .menu-tags {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

#nonveg-menu .menu-tags span {
  font-size: 12px;
  background: #f4f4f4;
  padding: 5px 10px;
  border-radius: 20px;
}

/* ================================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 900px) {

  #nonveg-menu .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  #nonveg-menu .menu-grid {
    grid-template-columns: 1fr;
  }

  #nonveg-menu .menu-tabs {
    flex-wrap: wrap;
  }

}
.social-link i{
  margin-right:8px;
  font-size:18px;
}

/* Instagram */
.social-link.instagram i{
  color:#E4405F;
}

/* Facebook */
.social-link.facebook i{
  color:#1877F2;
}

/* WhatsApp */
.social-link.whatsapp i{
  color:#25D366;
}

/* Tiffin Section */
.tiffin-service{
  padding:80px 0;
}

/* Grid for cards */
.tiffin-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:40px;
}

/* Card */
.tiffin-card{
  background:#fff;
  padding:30px 25px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.tiffin-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

/* Featured card */
.featured-tiffin{
  border:2px solid #E8813A;
}

/* Icon */
.tiffin-icon{
  font-size:38px;
  margin-bottom:10px;
}

/* Intro text */
.tiffin-intro{
  font-size:14px;
  color:#6b6b6b;
  margin-bottom:15px;
}

/* Tiffin features list */
.tiffin-features{
  list-style:none;
  padding:0;
  margin:20px 0;
  text-align:center;
}

/* Each point */
.tiffin-features li{
  display:flex;
  justify-content:center;   /* center horizontally */
  align-items:center;
  gap:10px;
  margin:8px 0;
  font-size:15px;
  color:#333;
}

/* Icon styling */
.tiffin-features i{
  color:#E8813A;
  font-size:16px;
}

/* Button spacing */
.tiffin-cta{
  margin-top:15px;
  display:inline-block;
}
/* Veg tiffin icons */
.veg-tiffin .tiffin-icon,
.veg-tiffin .tiffin-features i{
  color:#2E8B57;
}

/* Student tiffin icons */
.student-tiffin .tiffin-icon,
.student-tiffin .tiffin-features i{
  color:#2E8B57;
}
/* BULK ORDER BANNER */

.bulk-banner{

  margin-top:3rem;

  background:linear-gradient(
      135deg,
      #FDF6EC 0%,
      #F5E8D0 100%
  );

  border-radius:20px;

  padding:3rem 2rem;

  box-shadow:0 15px 40px rgba(107,61,30,0.15);

  position:relative;

  overflow:hidden;

}


/* decorative background shape */

.bulk-banner::before{

  content:"";

  position:absolute;

  width:260px;
  height:260px;

  background:rgba(232,129,58,0.08);

  border-radius:50%;

  top:-120px;
  right:-120px;

}


/* content */

.bulk-inner{

  max-width:650px;

  margin:auto;

  text-align:center;

  position:relative;

  z-index:2;

}


/* icon */

.bulk-icon{

  font-size:38px;

  margin-bottom:10px;

}


/* title */

.bulk-title{

  font-size:1.6rem;

  font-weight:800;

  color:#3D1F0A;

  margin-bottom:10px;

}


/* text */

.bulk-desc{

  font-weight:600;

  color:#5C3D2E;

  margin-bottom:8px;

}


.bulk-note{

  font-weight:700;

  color:#6B3D1E;

  margin-bottom:22px;

}


/* button */

.bulk-btn{

  display:inline-block;

  background:linear-gradient(
      135deg,
      #E8813A,
      #C45E1A
  );

  color:#fff;

  padding:0.8rem 1.8rem;

  border-radius:50px;

  font-weight:700;

  font-size:0.95rem;

  box-shadow:0 8px 20px rgba(232,129,58,0.4);

  transition:all .3s ease;

}


.bulk-btn:hover{

  transform:translateY(-3px);

  box-shadow:0 12px 28px rgba(232,129,58,0.45);

}
.logo-img{
  height:70px;
  width:auto;
  object-fit:contain;
}

.footer-social{
margin-top:20px;
display:flex;
gap:12px;
}

.footer-social a{
width:36px;
height:36px;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,0.1);
border-radius:50%;
color:#fff;
font-size:16px;
transition:0.3s;
}

.footer-social a:hover{
background:var(--saffron);
transform:translateY(-3px);
}
.footer-social{
  margin-top:20px;
  display:flex;
  gap:12px;
}

/* Mobile center alignment */
@media (max-width:600px){

  .footer-social{
    justify-content:center;
  }

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

}

.footer-logo-img{
  height:70px;
  width:auto;
  object-fit:contain;
}
