/* ══════════════════════════════════════════════════════════
   styles.css — Janakpur Sweets
   ══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --primary: #f4a20a;
  --secondary: #c0392b;
  --bg: #fff8f0;
  --dark: #5d3a1a;
  --gold: #d4ac0d;
  --whatsapp: #25d366;
  --cream: #fff3e0;
  --cream-dark: #ffe0b2;
  --text: #3e2005;
  --text-light: #7a5230;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(93, 58, 26, 0.1);
  --shadow-md: 0 6px 32px rgba(93, 58, 26, 0.15);
  --shadow-lg: 0 12px 48px rgba(93, 58, 26, 0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-xl: 24px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 70px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* ── Scroll Fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition:
    background var(--transition),
    box-shadow var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(93, 58, 26, 0.12);
}

/* White links only on desktop when over hero */
@media (min-width: 769px) {
  .navbar:not(.scrolled) .nav-link {
    color: white;
  }
  .navbar:not(.scrolled) .logo-text {
    color: white;
  }
  .navbar:not(.scrolled) .logo-accent {
    color: var(--cream);
  }
  .navbar:not(.scrolled) .hamburger-line {
    background: white;
  }
}

/* Mobile nav links always dark */
@media (max-width: 768px) {
  .nav-links .nav-link {
    color: var(--dark) !important;
  }
}

/* Dark when scrolled */
.navbar.scrolled .nav-link {
  color: var(--dark);
}
.navbar.scrolled .logo-text {
  color: var(--dark);
}
.navbar.scrolled .logo-accent {
  color: var(--secondary);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark);
}
.logo-accent {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  transition:
    background var(--transition),
    color var(--transition);
}
.nav-link:hover,
.nav-link.active {
  background: var(--primary);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  position: relative;
  z-index: 1001;
  cursor: pointer;
}
.hamburger:hover {
  background: rgba(255, 255, 255, 0.18);
}
.hamburger-line {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
  display: block;
}
.navbar.scrolled .hamburger-line {
  background: var(--dark);
}
.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.35) 50%,
      rgba(0, 0, 0, 0.05) 100%
    ),
    url("hero.webp") center/cover no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  margin-bottom: -4rem;
}

/* Hero split layout */
.hero-split {
  display: flex;
  flex: 1;
  align-items: center;
  min-height: calc(100vh - 60px);
  padding-top: var(--nav-h);
  position: relative;
  z-index: 1;
}

.hero-left {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 2.5rem 3rem 4rem;
}

.hero-left-inner {
  max-width: 560px;
}

.hero-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}
.hero-title-accent {
  color: var(--cream);
}

.hero-tagline-wrap {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  min-height: 2.2rem;
  margin-bottom: 1.75rem;
}

.cursor {
  display: inline-block;
  color: var(--cream);
  font-weight: 300;
  animation: blink 1s step-end infinite;
  margin-left: 1px;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  transition: transform var(--transition);
}
.rating-badge.rating-pop {
  animation: ratingPop 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes ratingPop {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.18);
  }
  60% {
    transform: scale(0.96);
  }
  80% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}
.rating-star {
  font-size: 1rem;
}
.rating-number {
  font-size: 1.15rem;
  font-weight: 700;
}
.rating-label {
  font-size: 0.82rem;
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--secondary);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2.25rem;
  border-radius: 100px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  background: var(--cream);
}

/* Marquee strip */
.marquee-strip {
  background: var(--dark);
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.65rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  flex-shrink: 0;
}
.marquee-dot {
  opacity: 0.5;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════════════════
   SECTION COMMON
   ════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-light);
  font-size: 1rem;
  margin-top: 0.5rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   ABOUT
   ════════════════════════════════════════════ */
.about-section {
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.about-body {
  color: var(--text-light);
  margin-bottom: 0.85rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding-top: 1rem;
}

.stat-card {
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  border: 1px solid rgba(244, 162, 10, 0.18);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════
   MENU
   ════════════════════════════════════════════ */
.menu-section {
  background: var(--bg);
}

.menu-category-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cream-dark);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Collapsed: hide cards after the 3rd */
.menu-grid:not(.expanded) .menu-card:nth-child(n + 4) {
  display: none;
}

.see-all-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-see-all:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-see-all svg {
  transition: transform var(--transition);
}

.btn-see-all.expanded svg {
  transform: rotate(180deg);
}

.btn-see-all.expanded span {
  font-size: 0;
}

.btn-see-all.expanded span::before {
  content: "Show Less";
  font-size: 0.9rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(244, 162, 10, 0.12);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.menu-card:hover::before {
  transform: scaleX(1);
}

.menu-card-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.bestseller-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  text-transform: uppercase;
}

.menu-card-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.menu-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.menu-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
}
.menu-price small {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ════════════════════════════════════════════
   WHY SECTION
   ════════════════════════════════════════════ */
.why-section {
  background: var(--dark);
}
.why-section .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}
.why-section .section-title {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    background var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #d4a017;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.why-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   REVIEWS CAROUSEL
   ════════════════════════════════════════════ */
.reviews-section {
  background: var(--bg);
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.carousel-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.review-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(244, 162, 10, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-stars {
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
.review-text {
  font-size: 1.05rem;
  color: var(--dark);
  font-style: italic;
  line-height: 1.75;
  position: relative;
}
.review-text::before {
  content: "\201C";
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.4;
  position: absolute;
  top: -0.75rem;
  left: -0.5rem;
  line-height: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
}
.review-badge {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--dark);
  border: 1.5px solid var(--cream-dark);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}
.carousel-btn-prev {
  left: 0.75rem;
}
.carousel-btn-next {
  right: 0.75rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream-dark);
  transition:
    background var(--transition),
    transform var(--transition);
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--secondary);
  transform: scale(1.3);
}

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

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

.contact-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid rgba(244, 162, 10, 0.15);
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(244, 162, 10, 0.12);
}
.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.contact-item p {
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-link {
  color: var(--secondary);
  font-weight: 600;
  transition: color var(--transition);
}
.contact-link:hover {
  color: var(--primary);
}
.whatsapp-link {
  color: var(--whatsapp);
}
.whatsapp-link:hover {
  color: #1da855;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.footer-tagline {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a,
.footer-links li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
}

/* ════════════════════════════════════════════
   RESPONSIVE — Tablet
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-left {
    padding: 2.5rem 2rem 2.5rem 2.5rem;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE — Mobile
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  /* Navbar mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 248, 240, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.25rem 1.5rem 2rem;
    gap: 0.25rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.35s ease;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(93, 58, 26, 0.12);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: 0.6rem 1rem;
    width: 100%;
    border-radius: var(--radius-sm);
  }

  /* Hero mobile: stacked */
  .hero {
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    margin-bottom: -3rem;
  }
  .hero-split {
    flex-direction: column;
    min-height: auto;
    padding-top: calc(var(--nav-h) + 2rem);
    padding-bottom: 3rem;
  }
  .hero-left {
    padding: 1.5rem 1.5rem 0;
  }
  .hero-title {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }
  .hero-tagline-wrap {
    font-size: 1rem;
  }

  /* About */
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Menu */
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact */
  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

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

.about-image-block {
  width: 100%;
  margin-bottom: 2rem;
}

.about-image {
  width: 100%;
  max-width: 480px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

/* ════════════════════════════════════════════
   DELIVERY BADGE (replaces Add to Order btn)
   ════════════════════════════════════════════ */
.delivery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  white-space: nowrap;
}

/* ════════════════════════════════════════════
   FOOTER — Delivery Apps
   ════════════════════════════════════════════ */
.footer-delivery-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}

.footer-delivery-apps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.delivery-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  width: fit-content;
}

.delivery-app-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.delivery-app-icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

.foodmandu-btn {
  background: #e8380d;
  color: #fff;
}

.pathao-btn {
  background: #7b2d8b;
  color: #fff;
}
