/* Palety kolorystyczne.
   Aktywowane przez data-theme="dark|light" i data-palette="forest|terracotta|plum|mediterraneo" na <html>.
   Kazda kombinacja ustawia: --bg, --surface, --text, --text-muted, --accent, --accent-text, --border. */

/* ============= FOREST ============= */
html[data-palette="forest"][data-theme="dark"] {
    --bg: #1a1f2e;
    --surface: #232838;
    --text: #f0ebe0;
    --text-muted: #6b7185;
    --accent: #4ab89a;
    --accent-text: #0d3a30;
    --accent-soft: rgba(74, 184, 154, 0.15);
    --border: #2a3045;
    --progress-question: #4ab89a;
    --progress-answer: #d4a04a;
}

html[data-palette="forest"][data-theme="light"] {
    --bg: #faf6ed;
    --surface: #f0ebd8;
    --text: #2a2d3a;
    --text-muted: #8a8a85;
    --accent: #1d9e75;
    --accent-text: #faf6ed;
    --accent-soft: rgba(29, 158, 117, 0.12);
    --border: #d8d3c8;
    --progress-question: #1d9e75;
    --progress-answer: #b87a17;
}

/* ============= TERRACOTTA ============= */
html[data-palette="terracotta"][data-theme="dark"] {
    --bg: #2a1f1a;
    --surface: #3a2d24;
    --text: #f2e8d8;
    --text-muted: #807066;
    --accent: #6db4d4;
    --accent-text: #0c2a3a;
    --accent-soft: rgba(109, 180, 212, 0.15);
    --border: #4a3a30;
    --progress-question: #6db4d4;
    --progress-answer: #d4a04a;
}

html[data-palette="terracotta"][data-theme="light"] {
    --bg: #f5ead4;
    --surface: #faf2e0;
    --text: #2a1f1a;
    --text-muted: #8c7a66;
    --accent: #1f5f7a;
    --accent-text: #f5ead4;
    --accent-soft: rgba(31, 95, 122, 0.1);
    --border: #d8c7a8;
    --progress-question: #1f5f7a;
    --progress-answer: #b87a17;
}

/* ============= PLUM ============= */
html[data-palette="plum"][data-theme="dark"] {
    --bg: #1f1525;
    --surface: #2d1f35;
    --text: #f0e0e8;
    --text-muted: #7a6a82;
    --accent: #e8a64a;
    --accent-text: #2a1a05;
    --accent-soft: rgba(232, 166, 74, 0.15);
    --border: #3a2a42;
    --progress-question: #e8a64a;
    --progress-answer: #c47a8a;
}

html[data-palette="plum"][data-theme="light"] {
    --bg: #f5ecdf;
    --surface: #f0e3d4;
    --text: #1f1525;
    --text-muted: #8c7a85;
    --accent: #8a4a1a;
    --accent-text: #f5ecdf;
    --accent-soft: rgba(138, 74, 26, 0.1);
    --border: #d8c5b8;
    --progress-question: #8a4a1a;
    --progress-answer: #a35a85;
}

/* ============= MEDITERRANEO ============= */
html[data-palette="mediterraneo"][data-theme="dark"] {
    --bg: #102a3a;
    --surface: #1a3a4d;
    --text: #f0ebe0;
    --text-muted: #6a8294;
    --accent: #e8c84a;
    --accent-text: #2a2305;
    --accent-soft: rgba(232, 200, 74, 0.15);
    --border: #244a5e;
    --progress-question: #e8c84a;
    --progress-answer: #d4a04a;
}

html[data-palette="mediterraneo"][data-theme="light"] {
    --bg: #f5ecd0;
    --surface: #f0e6c0;
    --text: #102a3a;
    --text-muted: #8c8466;
    --accent: #1a4a6e;
    --accent-text: #f5ecd0;
    --accent-soft: rgba(26, 74, 110, 0.1);
    --border: #d8caa0;
    --progress-question: #1a4a6e;
    --progress-answer: #b87a17;
}
