/* ============================================================
   style.css — ZestyBites Fast Food Landing Page
   Pure HTML + CSS, zero JavaScript
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Nunito:wght@400;600;700;800&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --red:        #C8102E;
  --red-deep:   #8C0B20;
  --gold:       #F0A500;
  --gold-light: #FFD166;
  --cream:      #FDF8F2;
  --dark:       #17100A;
  --charcoal:   #2C2117;
  --gray:       #7A6E65;
  --card:       #FFFFFF;
  --border:     #EDE4D8;
  --green-wa:   #25D366;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', sans-serif;

  --radius-card: 20px;
  --shadow-card: 0 6px 28px rgba(0,0,0,.09);
  --shadow-lift: 0 16px 48px rgba(0,0,0,.14);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::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(--cream); color: var(--dark); overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── Utility ────────────────────────────────────────────────── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--red);
  box-shadow: 0 2px 20px rgba(0,0,0,.22);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .4px;
  transition: color .18s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 800;
  font-size: .88rem;
  padding: 10px 22px;
  border-radius: 40px;
  letter-spacing: .3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .18s, transform .15s;
}
.nav-cta:hover { background: #d4911a; transform: translateY(-1px); }
.nav-cta svg { flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--red);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.10) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  pointer-events: none;
}
/* decorative blob */
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px 80px;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 2;
}
.hero-copy { flex: 1; max-width: 540px; }
.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: .72rem;
  font-weight: 800;
  color: var(--gold-light);
  background: rgba(255,255,255,.10);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,.76);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  font-size: .98rem;
  padding: 14px 34px;
  border-radius: 40px;
  letter-spacing: .3px;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 6px 20px rgba(240,165,0,.35);
}
.btn-gold:hover { background: #d4911a; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(240,165,0,.4); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green-wa);
  color: #fff;
  font-weight: 800;
  font-size: .98rem;
  padding: 14px 30px;
  border-radius: 40px;
  transition: background .18s, transform .15s;
}
.btn-wa:hover { background: #1db954; transform: translateY(-2px); }
.btn-wa svg { flex-shrink: 0; }

/* hero image */
.hero-visual {
  flex-shrink: 0;
  width: 360px;
  height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px dashed rgba(255,255,255,.22);
  animation: spin 24s linear infinite;
}
.hero-ring-inner {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.10);
  animation: spin 14s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-food-img {
  width: 310px;
  height: 310px;
  border-radius: 50%;
  object-fit: cover;
  border: 7px solid rgba(255,255,255,.22);
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  animation: float 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hero-badge {
  position: absolute;
  bottom: 30px;
  right: -14px;
  z-index: 3;
  background: var(--gold);
  color: var(--dark);
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .5px;
  padding: 9px 20px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
  white-space: nowrap;
}
.hero-badge2 {
  position: absolute;
  top: 36px;
  left: -18px;
  z-index: 3;
  background: #fff;
  color: var(--red);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .4px;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  white-space: nowrap;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .7rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
}
.section-header { margin-bottom: 36px; }
.section-header.center { text-align: center; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--dark);
  padding: 28px 32px;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* ============================================================
   MENU SECTION
   ============================================================ */
.menu-section {
  max-width: 1280px;
  margin: 70px auto;
  padding: 0 32px;
}

/* ── Category Headings ── */
.category-block { margin-bottom: 64px; }
.cat-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}
.cat-heading-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.cat-heading-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--dark);
}
.cat-heading-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, var(--border), transparent);
  border-radius: 2px;
}

/* ── Grid ── */
.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(238px, 1fr));
  gap: 26px;
}

/* ── Card ── */
.food-card {
  background: var(--card);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .26s cubic-bezier(.25,.8,.25,1), box-shadow .26s;
  animation: fadeUp .5s ease both;
}
.food-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lift);
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
/* stagger via nth-child */
.food-card:nth-child(1) { animation-delay: .04s; }
.food-card:nth-child(2) { animation-delay: .08s; }
.food-card:nth-child(3) { animation-delay: .12s; }
.food-card:nth-child(4) { animation-delay: .16s; }
.food-card:nth-child(5) { animation-delay: .20s; }
.food-card:nth-child(6) { animation-delay: .24s; }

.card-img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #f0ebe2;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .38s ease;
}
.food-card:hover .card-img-wrap img { transform: scale(1.07); }

.card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.card-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.card-desc {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.55;
  flex: 1;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}
.card-price {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--red);
  white-space: nowrap;
}
.card-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-wa);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .3px;
  padding: 9px 15px;
  border-radius: 30px;
  white-space: nowrap;
  transition: background .18s, transform .15s;
  flex-shrink: 0;
}
.card-order:hover { background: #1db954; transform: translateY(-1px); }
.card-order svg { flex-shrink:0; }

/* ============================================================
   PROMO BANNER
   ============================================================ */
.promo {
  position: relative;
  background: var(--charcoal);
  overflow: hidden;
}
.promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1550547660-d9450f859349?w=1600&q=30') center/cover no-repeat;
  opacity: .15;
}
.promo-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: flex;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 2;
}
.promo-copy { flex: 1; }
.promo-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 16px;
}
.promo-copy h2 em { font-style: italic; color: var(--gold); }
.promo-phone {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.promo-img-wrap {
  flex-shrink: 0;
  margin-left: auto;
}
.promo-img-wrap img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--gold);
  box-shadow: 0 20px 56px rgba(0,0,0,.45);
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
  background: var(--red);
  padding: 52px 32px;
}
.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.about-text { flex: 1; min-width: 260px; }
.about-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.about-text p {
  color: rgba(255,255,255,.76);
  font-size: .98rem;
  line-height: 1.65;
  max-width: 480px;
}
.about-features {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.feat {
  background: rgba(255,255,255,.10);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  min-width: 110px;
}
.feat-icon { font-size: 1.8rem; margin-bottom: 6px; }
.feat-label {
  font-size: .78rem;
  font-weight: 800;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0D0804;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.75;
}
.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 44px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { margin-bottom: 8px; }
.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .5px;
  transition: background .18s, color .18s;
}
.socials a:hover { background: var(--red); color: #fff; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: rgba(255,255,255,.55); transition: color .18s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); margin: 0 4px; transition: color .18s; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  background: var(--green-wa);
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,.55); animation: none; }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 6px 36px rgba(37,211,102,.7); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hero-inner { flex-direction: column; text-align: center; padding: 56px 24px 64px; gap: 40px; }
  .hero-copy { max-width: 100%; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: 280px; height: 280px; }
  .hero-food-img { width: 240px; height: 240px; }
  .promo-inner { flex-direction: column; text-align: center; gap: 36px; }
  .promo-img-wrap { margin: 0 auto; }
  .promo-img-wrap img { width: 220px; height: 220px; }
  .about-inner { flex-direction: column; gap: 32px; }
  .about-features { justify-content: center; }
}

@media (max-width: 600px) {
  .nav-inner { padding: 0 18px; gap: 16px; }
  .nav-cta span { display: none; }
  .food-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { gap: 28px; }
}

@media (max-width: 400px) {
  .food-grid { grid-template-columns: 1fr; }
  .hero-visual { width: 230px; height: 230px; }
  .hero-food-img { width: 200px; height: 200px; }
}