/*
Theme Name: Sunhee
Theme URI: https://example.com/sunhee
Author: Your Name
Author URI: https://example.com
Description: A premium, modern WordPress theme with rich aesthetics and dark‑mode support.
Version: 1.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sunhee
Tags: block-theme, dark-mode, responsive, custom-background, custom-header
*/

:root {
  /* Default palette – can be overridden in theme.json or child CSS */
  --primary-h: 210;
  --primary-s: 60%;
  --primary-l: 55%;
  --bg-dark: hsl(210, 15%, 12%);
  --bg-light: hsl(0, 0%, 100%);
}

/* Basic typography – Google Font “Inter” */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: var(--bg-light);
  color: #222;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  body { background: var(--bg-dark); color: #eee; }
}

/* Utility classes */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
