:root {
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --green-pale: #B7E4C7;
  --gold: #F4A261;
  --gold-dark: #E76F51;
  --gold-light: #FFDDD2;
  --cream: #FFF8F0;
  --cream-dark: #F5ECD7;
  --red: #C1121F;
  --text-dark: #1A0A00;
  --text-mid: #3D2B1F;
  --text-light: #7A5C44;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* PARTICLES */
.particles {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.particle {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.12;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.12; }
  90% { opacity: 0.08; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(27, 67, 50, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo-block { display: flex; align-items: center; gap: 0.75rem; }
.logo-icon { font-size: 2rem; animation: sway 3s ease-in-out infinite; }
@keyframes sway { 0%,100%{transform:rotate(-8deg)} 50%{transform:rotate(8deg)} }
.logo-text { display: flex; flex-direction: column; }
.logo-hindi {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.02em;
}
.logo-english {
  font-family: 'Playfair Display', serif;
  font-size: 0.65rem; font-weight: 400;
  color: var(--green-pale); letter-spacing: 0.25em;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.header-badge {
  background: var(--gold); color: var(--green-dark);
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em;
  white-space: nowrap;
}

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, #0D2B1E 50%, #1A0A00 100%);
  display: flex; align-items: center;
  padding: 7rem 2rem 4rem;
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(244,162,97,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45,106,79,0.15) 0%, transparent 40%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(244,162,97,0.02) 40px, rgba(244,162,97,0.02) 41px);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }
.hero { gap: 4rem; max-width: 1200px; margin: 0 auto; width: 100%; flex-wrap: wrap; }
.hero-content { flex: 1; min-width: 300px; }
.hero-tag {
  display: inline-block;
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(244,162,97,0.3);
  border-radius: 50px;
}
.hero-title {
  display: flex; flex-direction: column;
  margin-bottom: 1rem;
}
.hero-line1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; color: var(--gold);
  line-height: 1.1;
}
.hero-line2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: 0.05em;
  text-shadow: 0 0 60px rgba(244,162,97,0.3);
}
.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--green-pale); margin-bottom: 0.75rem;
}
.hero-desc {
  color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7;
  max-width: 480px; margin-bottom: 2rem;
}
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-dark); padding: 0.85rem 2rem;
  border-radius: 50px; text-decoration: none;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.03em;
  box-shadow: 0 8px 25px rgba(244,162,97,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(244,162,97,0.5); }
.btn-secondary {
  border: 2px solid var(--green-pale); color: var(--green-pale);
  padding: 0.85rem 2rem; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--green-pale); color: var(--green-dark); }
.hero-stats { display: flex; align-items: center; gap: 1.5rem; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* HERO VISUAL */
.hero-visual { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.hero-card-wrap {
  position: relative; width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.orbit {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(244,162,97,0.25);
  display: flex; align-items: flex-start; justify-content: center;
  animation: spin linear infinite;
}
.orbit-1 { width: 260px; height: 260px; animation-duration: 12s; }
.orbit-2 { width: 200px; height: 200px; animation-duration: 8s; animation-direction: reverse; }
.orbit-3 { width: 140px; height: 140px; animation-duration: 6s; }
.orbit span { font-size: 1.5rem; margin-top: -0.75rem; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.hero-main-card {
  background: linear-gradient(135deg, rgba(45,106,79,0.9), rgba(27,67,50,0.95));
  border: 2px solid var(--gold);
  border-radius: 24px; padding: 2rem 1.5rem;
  text-align: center; z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(244,162,97,0.15);
  backdrop-filter: blur(10px);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.03)} }
.hmc-emoji { font-size: 3rem; margin-bottom: 0.5rem; }
.hmc-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); font-weight: 700; margin-bottom: 0.25rem; }
.hmc-price { font-size: 1.8rem; font-weight: 800; color: var(--gold); margin-bottom: 0.5rem; }
.hmc-tag { background: var(--gold); color: var(--green-dark); padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; display: inline-block; }

/* FILTER SECTION */
.filter-section {
  background: var(--green-dark);
  padding: 4rem 2rem 3rem;
  position: relative; z-index: 1;
}
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-tag {
  color: var(--gold); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem;
}
.section-sub { color: rgba(255,255,255,0.5); font-size: 1rem; }
.filter-tabs { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.filter-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 0.7rem 1.8rem; border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all 0.25s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold); border-color: var(--gold);
  color: var(--green-dark); transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244,162,97,0.35);
}

/* MENU SECTION */
.menu-section {
  background: var(--cream); padding: 4rem 2rem;
}
.cat-header {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 20px;
  border-left: 5px solid var(--gold);
}
.cat-icon-big { font-size: 2.5rem; }
.cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--white);
}
.cat-sub { color: var(--green-pale); font-size: 0.9rem; margin-top: 0.2rem; }
.cat-badge {
  margin-left: auto;
  background: var(--gold); color: var(--green-dark);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700; white-space: nowrap;
}
.paan-badge { background: var(--green-pale); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}
.item-card {
  background: var(--white);
  border: 1px solid rgba(45,106,79,0.12);
  border-radius: 16px; padding: 1.25rem;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.item-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  transform: scaleX(0); transition: transform 0.25s;
}
.item-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(45,106,79,0.15); border-color: var(--green-light); }
.item-card:hover::before { transform: scaleX(1); }
.item-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  padding: 0.2rem 0.6rem; border-radius: 50px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em;
}
.badge-premium { background: linear-gradient(135deg, #FFD700, #FFA500); color: #3D2B1F; }
.badge-hot { background: linear-gradient(135deg, #FF6B6B, #C1121F); color: white; }
.item-icon { font-size: 1.8rem; }
.item-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); line-height: 1.3; }
.item-body p { font-size: 0.75rem; color: var(--text-light); margin-top: 0.15rem; }
.item-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--green-mid); margin-top: auto;
}

/* PAAN SECTION */
.paan-section {
  background: linear-gradient(180deg, #0D2B1E 0%, var(--green-dark) 100%);
  padding: 4rem 2rem;
}
.paan-section .cat-title { color: var(--white); }
.paan-cat-header { background: linear-gradient(135deg, rgba(244,162,97,0.15), rgba(45,106,79,0.3)); border-left-color: var(--gold); }

.paan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.paan-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(183,228,199,0.2);
  border-radius: 20px; padding: 1.5rem;
  display: flex; align-items: center; gap: 1.25rem;
  position: relative; overflow: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}
.paan-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(244,162,97,0.05), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.paan-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 15px 40px rgba(0,0,0,0.3); }
.paan-card:hover::after { opacity: 1; }
.paan-featured {
  border-color: rgba(244,162,97,0.5);
  background: rgba(244,162,97,0.08);
}
.paan-feat-badge {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--gold); color: var(--green-dark);
  padding: 0.25rem 0.75rem; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700;
}
.paan-leaf { font-size: 2.5rem; flex-shrink: 0; animation: sway 4s ease-in-out infinite; }
.paan-info { flex: 1; }
.paan-info h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.paan-info p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 0.6rem; }
.paan-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.paan-tags span {
  background: rgba(183,228,199,0.15); color: var(--green-pale);
  padding: 0.15rem 0.6rem; border-radius: 50px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.05em;
}
.paan-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--gold);
  flex-shrink: 0;
}

/* WHY SECTION */
.why-section {
  background: var(--cream-dark); padding: 5rem 2rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--white); border-radius: 20px;
  padding: 2rem 1.5rem; text-align: center;
  border: 1px solid rgba(45,106,79,0.1);
  transition: all 0.3s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(45,106,79,0.12); border-color: var(--green-light); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.5rem; }
.why-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #0A1F0E, #1B4332);
  padding: 4rem 2rem 2rem;
  border-top: 3px solid var(--gold);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo { text-align: center; margin-bottom: 2rem; }
.f-hindi {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
  margin-bottom: 0.5rem;
}
.f-tag { color: var(--green-pale); font-size: 0.9rem; letter-spacing: 0.1em; }
.footer-div { height: 1px; background: rgba(255,255,255,0.1); margin: 2rem 0; }
.footer-info { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-bottom: 2rem; }
.f-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-bottom { text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-bottom: 0.5rem; }
.f-warn { color: rgba(244,162,97,0.6) !important; font-size: 0.75rem !important; }

/* HIDDEN STATE */
.item-card.hidden, .paan-card.hidden { display: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .header-inner { padding: 0.75rem 1rem; }
  .nav-links { display: none; }
  .hero { flex-direction: column; padding: 6rem 1.5rem 3rem; gap: 2rem; }
  .hero-visual { width: 100%; }
  .hero-card-wrap { width: 220px; height: 220px; }
  .orbit-1 { width: 200px; height: 200px; }
  .orbit-2 { width: 155px; height: 155px; }
  .orbit-3 { width: 110px; height: 110px; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
  .paan-grid { grid-template-columns: 1fr; }
  .cat-header { flex-wrap: wrap; }
  .footer-info { gap: 1.5rem; flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-line2 { font-size: 3rem; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
