/* ═════════════════════════════════════════════════════════════
   Theme: Sun   ☀️
   "Steel Blue on marble — light, airy, daylight legible"
   ═════════════════════════════════════════════════════════════ */

.theme-sun {
  --bg-primary:     #f6f5f2;
  --bg-secondary:   #eceae5;
  --bg-card:        #ffffff;
  --text-primary:   #1a1a2e;
  --text-secondary: rgba(26,26,46,.55);
  --accent:         #1a5fb4;
  --accent-dim:     rgba(26,95,180,.15);
  --border:         rgba(0,0,0,.1);

  --font-monospace: 'JetBrains Mono', 'Courier New', monospace;
  --font-sans:      'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
}

/* Decorative tweaks — softer cards, no dark shadows */
.theme-sun .prose pre {
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.theme-sun .prose pre::before { display: none; } /* no terminal label in light mode */
.theme-sun .prose code {
  background: rgba(26,95,180,.06); color: var(--accent);
  border-color: var(--border);
}
.theme-sun .prose blockquote::before { display: none; }
.theme-sun .post-list li { border-left-color: var(--accent); }
.theme-sun .site-title { color: var(--text-primary); }
.theme-sun footer { color: var(--text-secondary); }
.theme-sun .greeting { color: var(--accent); }
