/* lokaTheme.css — Shared Nature Cafe Theme (use on all pages) */

/* ---------- Theme tokens ---------- */
:root{
  --bg-0:#f3f7f2;
  --bg-1:#eef5ee;
  --card:rgba(255,255,255,.82);
  --card-solid:#ffffff;

  --text:#1f2a22;
  --muted:#5f6b62;
  --line:rgba(30,41,35,.12);

  --accent:#2f6f4e;     /* leaf green */
  --accent-2:#c88a4d;   /* latte */
  --accent-3:#1e4d36;   /* deep moss */

  --ok-bg:#e9f7ef;
  --ok:#1f7a4a;

  --warn-bg:#fff2e5;
  --warn:#9a4f10;

  --danger-bg:#ffe7e7;
  --danger:#b42318;

  --shadow: 0 10px 26px rgba(17, 24, 39, .10);
  --radius:16px;
  --radius-sm:12px;

  /* Responsive type scale */
  --h1: 22px;
  --body: 14px;
  --small: 12.5px;
}

/* Let the document grow */
html, body { min-height: 100%; }

/* Paint background on the root so it always covers full page */
html{
  background:
    radial-gradient(900px 600px at 10% 0%, rgba(47,111,78,.18), transparent 55%),
    radial-gradient(800px 520px at 90% 10%, rgba(200,138,77,.16), transparent 50%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional: keeps it stable while scrolling */
}

/* Keep body transparent so html background shows */
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans";
  color:var(--text);
  background: transparent;
}
