/*
Theme Name: Under Construction Bookmarks
Theme URI: https://example.com/
Author: Michael
Description: A deliberately minimal, single-page theme for an under-construction or personal bookmarks page.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: under-construction-bookmarks
*/

:root {
  color-scheme: dark;
  --background: #10131a;
  --panel: #191e29;
  --text: #f5f7fb;
  --muted: #aeb8ca;
  --accent: #ffd166;
  --border: #2a3242;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 32px 18px;
  display: grid;
  place-items: center;
  color: var(--text);
  background:
    radial-gradient(circle at top, #20283a 0, transparent 42rem),
    var(--background);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

.page {
  width: min(100%, 760px);
}

.status {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 11px;
  border: 1px solid color-mix(in srgb, var(--accent) 55%, transparent);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 10vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.intro {
  max-width: 58ch;
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.bookmarks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bookmarks a {
  display: block;
  height: 100%;
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: var(--panel);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
}

.bookmarks a:hover,
.bookmarks a:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
  outline: none;
}

.bookmarks small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

footer {
  margin-top: 34px;
  color: var(--muted);
  font-size: 0.85rem;
}

