/*
Theme Name: Interstellar Frontier Minimal
Theme URI: https://interstellarfrontier.com
Author: Henry Pompper
Author URI: https://interstellarfrontier.com
Description: A minimal starter classic theme for Interstellar Frontier. Lightweight, clean, and easy to extend.
Version: 0.1.1
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: interstellarfrontier-minimal
Tags: custom-logo, custom-menu, featured-images, translation-ready, block-styles

This theme, like WordPress, is licensed under the GPL.
*/

:root {
  --bg: #0b0f14;
  --panel: #0f1720;
  --text: #e6edf3;
  --muted: #9aa7b2;
  --accent: #2f8cff;
  --maxw: 1040px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(11, 15, 20, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 10;
}

.header-inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-primary ul {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.nav-primary a {
  color: var(--text);
  opacity: 0.9;
}
.nav-primary a:hover { opacity: 1; }

main { padding: 48px 0; }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
  color: var(--muted);
}

.wp-block-image img {
  border-radius: calc(var(--radius) - 4px);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
