/* assets/css/theme-scifi.css */

body.theme-scifi {
  /* Fonts */
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "SF Mono", "Menlo", "Consolas", monospace;

  /* Colors & surfaces */
  --bg: radial-gradient(circle at top, #111827 0, #020617 45%, #000000 100%);
  --text: #e5e7eb;

  --surface: #020617;
  --surface-elevated: #02081f;

  --border-subtle: #111827;

  --accent: #22d3ee;
  --accent-soft: #0f172a;
  --accent-text: #e0faff;

  --chip-bg: #020617;
  --chip-text: #e5e7eb;

  --badge-bg: rgba(56, 189, 248, 0.12);
  --badge-text: #7dd3fc;

  --shadow-soft: 0 0 0 1px rgba(148, 163, 184, 0.2), 0 10px 25px rgba(0, 0, 0, 0.7);

  --button-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
  --button-shadow-hover: 0 0 25px rgba(34, 211, 238, 0.5);

  --site-title-tracking: 0.12em;
  --site-title-transform: uppercase;
}

/* Optional subtle grid overlay for the whole page */
body.theme-scifi::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px;
  mix-blend-mode: soft-light;
  opacity: 0.5;
  z-index: -1;
}

/* Slight console-style borders on header/footer */
body.theme-scifi .site-header,
body.theme-scifi .site-footer {
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

body.theme-scifi .site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}

/* Recipe cards: subtle glow and outline */
body.theme-scifi .recipe-card {
  border-radius: 0.8rem;
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.3), 0 12px 30px rgba(0, 0, 0, 0.9);
  background: radial-gradient(circle at top, #02081f 0, #020617 50%, #000000 100%);
  position: relative;
}

body.theme-scifi .recipe-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(34, 211, 238, 0.09);
  pointer-events: none;
}

/* Section cards on recipe page */
body.theme-scifi .recipe-section {
  background: radial-gradient(circle at top, #02081f 0, #020617 50%, #000000 100%);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.3), 0 12px 30px rgba(0, 0, 0, 0.9);
  border-radius: 0.85rem;
}

/* Tags + badges: crisp chips */
body.theme-scifi .tag {
  border: 1px solid rgba(148, 163, 184, 0.4);
}

body.theme-scifi .badge {
  border: 1px solid rgba(56, 189, 248, 0.5);
}

/* Links */
body.theme-scifi a {
  color: #38bdf8;
}

/* Sci-fi: section headings feel more HUD-like */
body.theme-scifi .recipe-section h2 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Sci-fi: small corner "brackets" on sections */
body.theme-scifi .recipe-section {
  position: relative;
}

body.theme-scifi .recipe-section::before,
body.theme-scifi .recipe-section::after {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 2px;
  background: rgba(34, 211, 238, 0.5);
}

body.theme-scifi .recipe-section::before {
  top: 0.45rem;
  left: 0.75rem;
}

body.theme-scifi .recipe-section::after {
  bottom: 0.45rem;
  right: 0.75rem;
  background: rgba(148, 163, 184, 0.8);
}

/* Sci-fi breadcrumb colors */
body.theme-scifi {
  --breadcrumb-text: #9ca3af;
  --breadcrumb-link: #38bdf8;
}

