/* ============================================================
   MenuCraft — Marketing site stylesheet (light theme)
   Shared by: landing page, demo page, pricing page.
   Nav (.nav-*, .btn-ghost, .btn-primary) lives in header.php;
   footer (.footer*) lives in footer.php — not duplicated here.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #E8521A;
  --brand-light: #FF6B35;
  --brand-tint: #FFF1EA;
  --ink: #14151A;
  --ink-2: #3A3D46;
  --muted: #6B7280;
  --muted-2: #9CA3AF;
  --bg: #FFFFFF;
  --surface: #F7F7F9;
  --border: #E8E8EC;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(16,24,40,.04);
  --shadow-md: 0 4px 16px rgba(16,24,40,.06);
  --shadow-lg: 0 24px 48px rgba(16,24,40,.12);
  --transition: all .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

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

/* ── Section scaffolding ─────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-tight { padding: 4rem 2rem; }
.section-surface { background: var(--surface); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--brand-tint);
  border: 1px solid rgba(232,82,26,0.18);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 560px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── Buttons (page content — nav has its own in header.php) ──── */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.875rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-cta.primary { background: var(--brand); color: #fff; box-shadow: 0 1px 2px rgba(232,82,26,.15); }
.btn-cta.primary:hover { background: var(--brand-light); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(232,82,26,0.28); }
.btn-cta.secondary { background: #fff; color: var(--ink); border-color: var(--border); }
.btn-cta.secondary:hover { border-color: var(--ink); }

/* ── Cards ─────────────────────────────────────────────────────*/
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: #DCDCE2; }

/* ── Scroll reveal ─────────────────────────────────────────────*/
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── Responsive ───────────────────────────────────────────────*/
@media (max-width: 768px) {
  .section { padding: 4rem 1.25rem; }
  .section-tight { padding: 3rem 1.25rem; }
}
