:root {
  --bg: #fcefea; /* light peach */
  --accent: #f45a5a; /* coral */
  --accent-2: #ffb27d; /* warm */
  --muted: #9e9ea6;
  --card: #fff7f6;
  --rounded: 20px;
  --shadow: 0 10px 30px rgba(44, 34, 40, 0.08);
  --container: 1200px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Poppins", system-ui, Arial;
  background: var(--bg);
  color: #2b2b2b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.3;
}
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 36px 24px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand-img {
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.brand-img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}
.brand {
  font-size: x-large;
  font-weight: 700;
  color: #222;
  cursor: pointer;
}
.brand:hover {
  color: var(--accent);
  transition: color 0.3s ease;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}
.auth {
  display: flex;
  gap: 12px;
}
.btn-outline {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: white;
}
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
}

/* HERO */
.hero {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
}
.hero-left {
  flex: 1;
}
.eyebrow {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}
h1 {
  font-size: 46px;
  line-height: 1.02;
  margin: 0;
  color: #e24b4b;
}
h1 strong {
  color: #2b2b2b;
}
p.lead {
  color: var(--muted);
  margin: 18px 0 24px;
  max-width: 520px;
}
.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
}

.pill-parent {
  width: 100%;
  margin-top: 30px;
  display: flex;
  justify-content: center; 
  align-items: center;
}

.pill {
  display: inline-flex;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(180deg, #ff9b87, #f46b6b);
  color: white;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.hero-right {
  width: 460px;
  flex: 0 0 460px;
  display: flex;
  justify-content: center;
}
.hero-illustration {
  width: 420px;
  height: 420px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-illustration img {
  width: 420px;
  height: auto;
  object-fit: contain;
}

/* Info badges */
.badges {
  background: transparent;
  margin-top: 18px;
  border-radius: 18px;
  display: flex;
  gap: 18px;
  align-items: center;
}
.badge {
  background: white;
  padding: 18px;
  height: 150px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  flex: 1;
  display: flex;
  gap: 14px;
  align-items: center;
}
.badge .icon {
  width: auto;
  height: auto;
  border-radius: 50%;
  padding: 10px;
  background: linear-gradient(180deg, #ffdfaa, #ffe7cf);
  display: grid;
  place-items: center;
  font-weight: 700;
}
.badge h4 {
  margin: 0;
  font-size: 15px;
}
.badge p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Sections */
section {
  padding: 44px 0;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.heading {
  font-size: 34px;
}
.heading span {
  color: var(--accent);
}

/* Category icons */
.categories {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.cat {
  width: 220px;
  text-align: center;
}
.cat .circle {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff2f2, #ffece9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  margin: 0 auto;
}
.cat .circle img {
  width: 150px;
  height: 150px;
}
.cat h5 {
  margin-top: 12px;
  margin-bottom: 6px;
}
.cat small {
  color: var(--muted);
}

/* Menu grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
}
.menu-card .thumb {
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: white;
  display: block;
  margin: -80px auto 8px;
  overflow: hidden;
  border: 8px solid #f3b2ac;
  align-content: center;
  text-align: center;
}
.menu-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.menu-card h4 {
  margin: 8px 0 6px;
  text-align: center;
}
.price {
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
.buy {
  display: block;
  margin: 12px auto;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  width: 80px;
  text-align: center;
}

/* Promo cards */
.promo-row {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}
.promo-big {
  flex: 2;
  background: url("https://images.unsplash.com/photo-1550547660-d9450f859349?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=60")
    center/cover;
  border-radius: 14px;
  padding: 18px;
  color: white;
  min-height: 180px;
  box-shadow: var(--shadow);
  position: relative;
}
.promo-small {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promo-sm {
  background: #f7e6d9;
  border-radius: 12px;
  padding: 12px;
  min-height: 84px;
  box-shadow: var(--shadow);
}

footer {
  margin-top: 48px;
  padding: 40px 10px;
  background: #f9eae6;
  border-radius: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.muted {
  color: var(--muted);
}

.online-order {
  padding: 12px 18px;
  border-radius: 12px;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.zomato {
  background-color: #e23744;
}

.zomato:hover {
  background-color: #c02632;
}

.swiggy {
  background-color: #fc8019;
}

.swiggy:hover {
  background-color: #c86a3d;
}

/* Responsive */
@media (max-width: 1000px) {
  .hero {
    flex-direction: column-reverse;
  }
  .hero-right {
    width: 100%;
    flex: unset;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories {
    flex-wrap: wrap;
  }
  .wrap {
    padding: 20px;
  }
}
@media (max-width: 650px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
  header nav {
    display: none;
  }
  .hero h1 {
    font-size: 32px;
  }
}
