/*
  LOCAL KORAT design tokens
  Concept: Modern Thai Local + Premium + Friendly
  The lattice motif used across brand surfaces is a minimal nod to the
  sandstone window lattices of Prasat Hin Phimai - Korat's own landmark -
  rendered as thin geometric line work instead of ornate gilded pattern,
  so it reads contemporary rather than official/government.
*/
:root {
  /* Color */
  --color-korat-orange: #e8622c;
  --color-korat-orange-dark: #c24a1c;
  --color-korat-orange-light: #fbeae0;
  --color-cream: #fbf6ef;
  --color-off-white: #f7f4ee;
  --color-charcoal: #2b2621;
  --color-charcoal-soft: #574d43;
  --color-light-gray: #e4dfd6;
  --color-white: #ffffff;
  --color-danger: #c1382b;
  --color-danger-bg: #fbeae7;
  --color-success: #2f7a4f;
  --color-success-bg: #e9f5ee;

  /* Type */
  --font-display: 'Bai Jamjuree', 'Noto Sans Thai', system-ui, sans-serif;
  --font-body: 'Noto Sans Thai', 'Bai Jamjuree', system-ui, sans-serif;

  /* Shape / elevation */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-card: 0 10px 30px rgba(43, 38, 33, 0.08);
  --shadow-card-hover: 0 14px 36px rgba(43, 38, 33, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-off-white);
}

a {
  color: inherit;
}
