/* ==========================================================================
   PUNJABI HEAVEN - ULTRA PREMIUM DRIBBBLE INSPIRED CSS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Strict Brand Palette */
  --primary: #0CA6A6;      /* Teal */
  --secondary: #F15A29;    /* Orange - ONLY FOR CTAs */
  --secondary-hover: #D94C1E;
  --accent: #E2C300;       /* Gold */
  
  /* Expansive Surface Colors */
  --bg-main: #FFFDF8;
  --bg-section: #F8F6F1;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  
  /* Precision Typography Colors */
  --text-dark: #111111;
  --text-body: #4A4A4A;
  --text-light: #888888;
  
  /* Utilities */
  --border-color: rgba(0,0,0,0.05);
  --success: #25D366;
  
  /* Typography Hierarchy */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Ultra Premium UI Tokens */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  
  /* Layered Apple/Stripe-level Shadows */
  --shadow-subtle: 0 4px 12px rgba(0,0,0,0.03);
  --shadow-card: 0 10px 30px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.02);
  --shadow-hover: 0 30px 60px rgba(0,0,0,0.08), 0 10px 20px rgba(0,0,0,0.04);
  --shadow-glow: 0 15px 35px rgba(241, 90, 41, 0.25);
  --shadow-glass: 0 8px 32px rgba(0,0,0,0.05);
  
  /* Fluid Transitions */
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  font-family: var(--font-body); 
  color: var(--text-body); 
  background: var(--bg-main); 
  overflow-x: hidden; 
  line-height: 1.7; 
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { 
  font-family: var(--font-heading); 
  color: var(--text-dark); 
  line-height: 1.1; 
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }

/* UTILITIES */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-dark { color: var(--text-dark) !important; }
.text-light { color: var(--text-light) !important; }

/* Stripe-level Spacing */
.section-padding { padding: 8rem 5%; }
.section-padding-lg { padding: 12rem 5%; }

/* GLASSMORPHISM */
.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow-glass);
}

.menu-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: rgba(12,166,166,0.1);
  color: var(--primary);
}

.inspiration-section {
  background: url('../images/inspiration-img.png') left center/contain no-repeat;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  border: none;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn-primary { 
  background: var(--secondary); 
  color: var(--white); 
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { 
  transform: translateY(-4px) scale(1.02); 
  box-shadow: 0 20px 40px rgba(241, 90, 41, 0.35);
}
.btn-outline { 
  background: transparent; 
  border: 2px solid var(--border-color); 
  color: var(--text-dark); 
}
.btn-outline:hover { 
  border-color: var(--primary); 
  color: var(--primary); 
}

/* HEADER / NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 0.8rem 5%;
  background: transparent;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
}
.navbar.scrolled {
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.5rem 5%;
  box-shadow: var(--shadow-subtle);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar.scrolled .nav-links a { color: var(--white); }
.nav-logo { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.nav-logo img { height: 80px; transition: var(--transition-smooth); }
.navbar.scrolled .nav-logo img { height: 60px; }
.nav-brand-text { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; line-height: 1; }
.nav-center { flex: 1; display: flex; justify-content: center; margin: 0; }
.nav-links { display: flex; gap: 3rem; list-style: none; align-items: center; margin: 0; padding: 0; }
.nav-links a { 
  font-family: var(--font-body);
  font-weight: 500; 
  font-size: 1rem;
  color: var(--text-dark); 
  position: relative; 
  transition: var(--transition-fast);
}
.nav-links a:hover { color: var(--primary); }

/* MOBILE MENU & OVERLAY */
.mobile-menu-toggle { display: none; font-size: 1.8rem; color: var(--text-dark); cursor: pointer; z-index: 1001; }
.navbar.scrolled .mobile-menu-toggle { color: var(--white); }

.mobile-nav-overlay {
  position: fixed; top: 0; left: -300px; width: 280px; height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start;
  padding: 80px 30px;
  z-index: 999;
  box-shadow: 5px 0 20px rgba(0,0,0,0.5);
  opacity: 1; transition: left 0.4s cubic-bezier(0.16,1,0.3,1);
}
.mobile-nav-overlay.active { left: 0; }
.mobile-nav-links { list-style: none; padding: 0; margin: 0; text-align: left; width: 100%; }
.mobile-nav-links li { margin: 1.5rem 0; transform: translateX(-20px); opacity: 0; transition: all 0.4s ease; }
.mobile-nav-overlay.active .mobile-nav-links li { transform: translateX(0); opacity: 1; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-links a { font-size: 2rem; color: var(--white); text-decoration: none; font-weight: 800; font-family: var(--font-heading); display: block; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.mobile-nav-links a:hover { color: var(--primary); padding-left: 10px; transition: 0.3s; }


/* BENTO GRID SYSTEM */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 20px;
}
.bento-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}
.bento-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-medium { grid-column: span 2; grid-row: span 1; }

.bento-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.bento-item:hover .bento-img { transform: scale(1.05); }
.bento-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
}
.bento-overlay h3 { color: var(--white); font-size: 2rem; margin-bottom: 0.5rem; }
.bento-overlay p { color: rgba(255,255,255,0.8); font-size: 1rem; }

/* HORIZONTAL SCROLLING TRACK (Popular Meals) */
.horizontal-scroll-wrapper {
  overflow-x: auto;
  padding: 2rem 5% 4rem;
  margin: 0 -5%;
  display: flex;
  gap: 32px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.horizontal-scroll-wrapper::-webkit-scrollbar { display: none; }
.horizontal-card {
  min-width: 300px;
  max-width: 320px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
}
.horizontal-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.horizontal-card img {
  width: 100%; height: 200px; object-fit: cover;
  border-radius: var(--radius-sm); margin-bottom: 1.5rem;
}

/* NUTRITION & TAGS */
.food-badge {
  position: absolute; top: 30px; left: 30px;
  background: var(--glass-panel); backdrop-filter: blur(10px);
  color: var(--text-dark); padding: 8px 16px; border-radius: 100px; 
  font-size: 0.85rem; font-weight: 600; font-family: var(--font-heading);
  box-shadow: var(--shadow-subtle);
}
.nutrition-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-section); padding: 12px 20px;
  border-radius: var(--radius-sm); margin-bottom: 1.5rem;
}

/* PREMIUM DARK FOOTER */
.footer {
  background: var(--dark);
  color: white;
  padding: 4rem 5% 1rem;
  font-family: var(--font-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-heading {
  font-family: var(--font-heading);
  color: white;
  font-size: 2.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 0 var(--primary);
}

.footer p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 5px;
}

.footer-hours {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.f-hour-row {
  display: flex;
  justify-content: space-between;
  max-width: 280px;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.footer-contact { margin-bottom: 2rem; }
.footer-contact strong { font-weight: 700; margin-right: 5px; color: white; }
.footer-contact a { color: rgba(255,255,255,0.7); text-decoration: none; transition: 0.3s; }
.footer-contact a:hover { color: var(--primary); }

.footer-socials {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
}
.footer-socials a {
  color: white;
  font-size: 1.4rem;
  transition: 0.3s;
}
.footer-socials a:hover { color: var(--primary); }

.footer-badges {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.f-badge {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-col {
  align-items: flex-end;
}
.footer-massive-logo {
  max-height: 250px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 4rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.footer-bottom p {
  font-size: 0.9rem;
  margin: 0;
  font-weight: 600;
}

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .footer-col { align-items: center; }
  .f-hour-row { width: 100%; margin: 0 auto; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .bento-large { grid-column: span 2; }
  .bento-medium { grid-column: span 2; }
  .nav-center { display: none; }
  .mobile-menu-toggle { display: block; }
  .nav-right .btn { display: none; } /* Hide button on mobile nav to save space */
}
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-medium { grid-column: span 1; }
  .horizontal-card { min-width: 280px; }
  .section-padding { padding: 5rem 5%; }
  
  .vision-img-mobile { display: none !important; }
  .chef-img-mobile { width: 100% !important; display: block; margin: 0 auto; height: auto; }
  .inspiration-section { background-image: none !important; }
}

