/*
Theme Name: XIV Headless WP
Theme URI: https://example.com/xiv-headless-wp
Author: Copilot
Description: A minimal headless-friendly WordPress theme that keeps WordPress as the content backend while exposing a lightweight front-end shell.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: xiv-headless-wp
*/

:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #0f172a;
  color: #e2e8f0;
}

a {
  color: inherit;
}

.headless-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 3rem 1.5rem;
}

.headless-card {
  width: min(720px, 100%);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.82));
  box-shadow: 0 24px 80px rgba(2, 6, 23, 0.45);
  padding: 2.5rem;
}

.headless-kicker {
  margin: 0 0 0.75rem;
  color: #7dd3fc;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.headless-card h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1;
}

.headless-card p {
  margin: 1rem 0 0;
  max-width: 56ch;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.7;
}

.headless-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.headless-pill {
  border: 1px solid rgba(125, 211, 252, 0.25);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  background: rgba(15, 118, 110, 0.15);
  color: #a5f3fc;
  font-size: 0.875rem;
}
