/*
Theme Name: Somna
Theme URI: https://somnaplugins.com
Author: Somna
Description: A room at 3am. The front page is a real-time PS2-era scene in hand-rolled WebGL2; product pages are a pinboard on that room's wall, rendered by WooCommerce. Scope is deliberately narrow — the front page and the single-product template only. Cart, checkout and account keep WooCommerce's own templates, because those pages sit between a buyer and a completed payment.
Version: 2.13.1
Requires at least: 6.0
Requires PHP: 7.4
License: All rights reserved
Text Domain: somna
WC requires at least: 7.0
*/

/* Per-page styling lives in assets/css/room.css and assets/css/wall.css and is
   enqueued conditionally. This file carries only what every page needs, so a
   cart or account page does not download a 3-D room's stylesheet. */

:root{
  --off:#000000; --room:#08090A; --ash:#3A3A3A; --signal:#9A9A9A;
  --phosphor:#E8E6E1; --burn:#FFFFFF; --cold:168,200,232;
  --mono:"DM Mono", ui-monospace, Menlo, monospace;
  --grot:"Archivo", system-ui, sans-serif;
}

body{ background:var(--off); color:var(--phosphor); font-family:var(--grot); }

/* Keyboard users must be able to skip a full-screen 3-D scene. */
.somna-skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--phosphor); color:#000; padding:.75rem 1rem;
  font-family:var(--mono); font-size:.7rem; letter-spacing:.14em; text-transform:uppercase;
}
.somna-skip:focus{ left:0; }
