﻿/* ============================================================
   SITE TYPOGRAPHY: FONT STACK, BODY, HEADINGS, LINKS
   ============================================================ */

/* Global base: Windows-first, Fluent-like system stack */
body {
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text-main);
    font-weight: 400;
}

/* ------------------------------------------------------------
   Headings
   ------------------------------------------------------------ */

h1, h2, h3, h4 {
    font-family: inherit;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-text-main);
    margin-top: 0.5em;
    margin-bottom: 0.25em;
}

/* You can tune these if you want more hierarchy */
h1 {
    font-size: 24px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 17px;
}

h4 {
    font-size: 15px;
}

/* Main header label in second row (e.g., Chat) */
.header-main-label-inner {
    font-size: 19px;   
    font-weight: 700; 
    color: var(--color-black-soft); 
    line-height: 1.3;
}


/* ------------------------------------------------------------
   Links
   ------------------------------------------------------------ */

a {
    text-decoration: none;
    color: var(--color-soft-blue); /* default link color from your palette */
    transition: color 0.15s;
}

    a:hover,
    a:focus-visible {
        color: var(--color-soft-violet); /* hover color from your palette */
        text-decoration: underline;
    }

/* ------------------------------------------------------------
   Header text: app label, Beta tag, context label
   ------------------------------------------------------------ */

/* App name label in row 1 (e.g., "Robocrunch") */
.header-app-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-main);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* Optional "Beta" tag next to app label */
.header-app-label-beta {
    font-size: 0.9em;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-left: 4px;
}

/* User id text on the right of row 1 */
.header-user-id {
    font-size: 13px;
    color: var(--color-text-main);
}

/* ------------------------------------------------------------
   Muted / secondary text
   ------------------------------------------------------------ */

.text-muted,
.timestamp,
.header-comment {
    color: var(--color-text-muted);
}

/* For strong identifiers in header (e.g., selected mode/id) */
.selected_mode,
.resource-id {
    color: var(--color-black-soft);
    font-size: 19px;
    font-weight: 700;
}
