/* 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;
}


/* Centered content area (no sidebar here) */
.content {
    min-height: 100svh;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tiles */
.tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    width: 100%;
}

.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-decoration: none;
    color: #111;
    width: clamp(140px, 22vw, 220px);
    aspect-ratio: 1/1;
    border: 1px solid var(--tile-border);
    border-radius: var(--radius);
    background: #ddeedf;
    box-shadow: var(--tile-shadow);
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.tile:hover,
.tile:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .12);
    border-color: #b6cdbd;
    outline: none;
}

.tile-icon {
    font-size: clamp(1.75rem, 3.8vw, 2.25rem);
    line-height: 1;
}

.tile-label {
    font-weight: 600;
    text-align: center;
    font-size: clamp(.95rem, 1.3vw, 1.05rem);
}

/* A11y utility */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}