/* ============================================================
   BITEO — LANDING PAGE STYLES
   ============================================================ */

:root {
  --biteo-orange: #EB6825;
  --biteo-orange-dark: #C94F14;
  --biteo-cream: #FAF6E6;
  --biteo-dark: #241A12;
  --biteo-text: #3A2E23;
  --biteo-text-soft: #6B5D4F;
  --radius: 20px;
  --shadow: 0 12px 32px rgba(60, 30, 10, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.landing {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background: var(--biteo-cream);
  color: var(--biteo-text);
  overflow-x: hidden;
}

.landing a { text-decoration: none; color: inherit; }
.landing ul { list-style: none; margin: 0; padding: 0; }
.landing img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.l-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 230, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(60, 30, 10, 0.08);
}
.l-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.l-nav-logo img { height: 40px; }
.l-nav-links {
  display: flex;
  gap: 32px;
  font-weight: 600;
  font-size: 15px;
}
.l-nav-links a { transition: color .2s; }
.l-nav-links a:hover { color: var(--biteo-orange); }
.l-nav-cta {
  background: var(--biteo-orange);
  color: #fff;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 18px rgba(235, 104, 37, .35);
  transition: transform .2s, box-shadow .2s;
}
.l-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(235, 104, 37, .45); }
.l-nav-toggle { display: none; }

/* ---------- HERO ---------- */
.l-hero {
  position: relative;
  padding: 70px 24px 100px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 20%, #FDEBD8 0%, var(--biteo-cream) 55%);
}
.l-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.l-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--biteo-orange-dark);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.l-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 20px;
  color: var(--biteo-dark);
}
.l-hero h1 span { color: var(--biteo-orange); }
.l-hero p {
  font-size: 18px;
  color: var(--biteo-text-soft);
  line-height: 1.8;
  margin: 0 0 32px;
  max-width: 480px;
}
.l-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-hero-primary {
  background: var(--biteo-orange);
  color: #fff;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 10px 26px rgba(235, 104, 37, .4);
  transition: transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero-primary:hover { transform: translateY(-3px); }
.btn-hero-secondary {
  background: #fff;
  color: var(--biteo-dark);
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  border: 2px solid rgba(60,30,10,.1);
  transition: border-color .2s, transform .2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero-secondary:hover { border-color: var(--biteo-orange); transform: translateY(-3px); }

.l-hero-visual { position: relative; display: flex; justify-content: center; }
.l-hero-visual img {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 30px 40px rgba(60,30,10,.25));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.l-hero-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, #FFD9B8 0%, transparent 70%);
  z-index: -1;
}

.l-hero-stats {
  max-width: 1180px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.l-stat { background: #fff; border-radius: var(--radius); padding: 24px 12px; box-shadow: var(--shadow); }
.l-stat strong { display: block; font-size: 30px; font-weight: 900; color: var(--biteo-orange); }
.l-stat span { font-size: 14px; color: var(--biteo-text-soft); font-weight: 600; }

/* ---------- SECTION SHARED ---------- */
.l-section { padding: 90px 24px; }
.l-section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.l-eyebrow {
  color: var(--biteo-orange);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.l-section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; color: var(--biteo-dark); margin: 0 0 14px; }
.l-section-head p { color: var(--biteo-text-soft); font-size: 16px; line-height: 1.8; margin: 0; }

/* ---------- MENU HIGHLIGHTS ---------- */
.l-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.l-menu-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.l-menu-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(60,30,10,.18); }
.l-menu-card img { height: 120px; margin: 0 auto 16px; object-fit: contain; }
.l-menu-card h3 { font-size: 17px; font-weight: 800; margin: 0 0 6px; }
.l-menu-card span { color: var(--biteo-orange-dark); font-weight: 800; font-size: 15px; }
.l-menu-more { text-align: center; margin-top: 44px; }

/* ---------- ABOUT / WHY ---------- */
.l-about { background: #fff; }
.l-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.l-about-img { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.l-features { display: grid; gap: 22px; }
.l-feature { display: flex; gap: 16px; align-items: flex-start; }
.l-feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--biteo-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.l-feature h4 { margin: 0 0 4px; font-size: 17px; font-weight: 800; }
.l-feature p { margin: 0; color: var(--biteo-text-soft); font-size: 14.5px; line-height: 1.7; }

/* ---------- APP PROMO ---------- */
.l-promo {
  background: linear-gradient(135deg, var(--biteo-orange) 0%, var(--biteo-orange-dark) 100%);
  border-radius: 32px;
  margin: 0 24px;
  padding: 70px 24px;
  color: #fff;
  text-align: center;
}
.l-promo h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin: 0 0 16px; }
.l-promo p { font-size: 17px; opacity: .95; max-width: 520px; margin: 0 auto 34px; line-height: 1.8; }
.l-promo-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-promo {
  background: #fff;
  color: var(--biteo-orange-dark);
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  transition: transform .2s;
}
.btn-promo:hover { transform: translateY(-3px); }
.btn-promo-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 16px;
  transition: border-color .2s, transform .2s;
}
.btn-promo-outline:hover { border-color: #fff; transform: translateY(-3px); }

/* ---------- LOCATIONS ---------- */
.l-locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.l-location-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.l-location-card h4 { margin: 0 0 12px; font-size: 18px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.l-location-card p { margin: 0 0 8px; color: var(--biteo-text-soft); font-size: 14.5px; line-height: 1.8; }
.l-location-card .l-loc-hours { color: var(--biteo-orange-dark); font-weight: 700; }

/* ---------- FOOTER ---------- */
.l-footer {
  background: var(--biteo-dark);
  color: #fff;
  padding: 60px 24px 30px;
}
.l-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.l-footer-logo { height: 38px; margin-bottom: 16px; }
.l-footer p { color: rgba(255,255,255,.65); font-size: 14.5px; line-height: 1.8; margin: 0; }
.l-footer h5 { font-size: 15px; font-weight: 800; margin: 0 0 18px; }
.l-footer ul li { margin-bottom: 12px; }
.l-footer ul a { color: rgba(255,255,255,.7); font-size: 14.5px; transition: color .2s; }
.l-footer ul a:hover { color: var(--biteo-orange); }
.l-social { display: flex; gap: 12px; margin-top: 18px; }
.l-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.l-social a:hover { background: var(--biteo-orange); }
.l-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .l-nav-links { display: none; }
  .l-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .l-hero p { margin-inline: auto; }
  .l-hero-actions { justify-content: center; }
  .l-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .l-menu-grid { grid-template-columns: repeat(2, 1fr); }
  .l-about-grid { grid-template-columns: 1fr; }
  .l-locations-grid { grid-template-columns: 1fr; }
  .l-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .l-menu-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .l-menu-card { padding: 16px; }
  .l-menu-card img { height: 90px; }
  .l-footer-grid { grid-template-columns: 1fr; }
  .l-promo { margin: 0 12px; padding: 50px 20px; }
}
