/* Curated site themes for the main portfolio page.
 *
 * styles.css exposes the accent + font decisions as custom properties with
 * the classic Grayscale-Teal values as fallbacks; each theme only overrides
 * those variables. The default theme therefore needs NO body attribute and
 * renders pixel-identically to the pre-theme era.
 *
 *   --pf-accent        primary accent (buttons, links, nav highlight)
 *   --pf-accent-hover  hover shade        --pf-accent-dark  active/border shade
 *   --pf-accent-tint   light tint         --pf-accent-rgb   accent as r, g, b
 *   --pf-font-body / --pf-font-ui / --pf-font-display
 *
 * Fonts are loaded conditionally per theme in index.html / project.html —
 * keep the family names here in lockstep with those <link> tags.
 */

/* Mono Noir — reduced, gallery-black. Identity from typography and images. */
body[data-pf-theme="mono-noir"] {
    --pf-accent: #212121;
    --pf-accent-hover: #000000;
    --pf-accent-dark: #000000;
    --pf-accent-tint: #e6e6e6;
    --pf-accent-rgb: 33, 33, 33;
    --pf-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --pf-font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --pf-font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Warm Editorial — terracotta accent with a serif display voice. */
body[data-pf-theme="warm-editorial"] {
    --pf-accent: #a34e28;
    --pf-accent-hover: #8b3f1e;
    --pf-accent-dark: #7c3a1d;
    --pf-accent-tint: #f3e3da;
    --pf-accent-rgb: 163, 78, 40;
    --pf-font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --pf-font-ui: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --pf-font-display: "Playfair Display", Georgia, serif;
}

/* Soft Gallery — muted slate blue, quiet and cool. */
body[data-pf-theme="soft-gallery"] {
    --pf-accent: #4e6f8d;
    --pf-accent-hover: #415e79;
    --pf-accent-dark: #3a536b;
    --pf-accent-tint: #dfe7ee;
    --pf-accent-rgb: 78, 111, 141;
    --pf-font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --pf-font-ui: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --pf-font-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
