/*-- scss:defaults --*/

/*-- scss:rules --*/

@import url("https://fonts.googleapis.com/css2?family=Itim&display=swap");

:root {
  --site-text: #1f2933;
  --site-muted: #52616b;
  --site-line: #d9e2ec;
  --site-accent: #0f766e;
  --site-surface: #f8fafc;
  --bs-body-font-family: Neucha, "Itim", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
  color: var(--site-text);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.navbar-brand {
  font-family: "Cabin Sketch", "Itim", cursive;
}

:lang(th),
[lang="th"],
.thai {
  font-family: "Itim", sans-serif;
  font-weight: 400;
}

code,
pre,
kbd,
samp {
  font-family: var(--bs-font-monospace);
}

.navbar {
  border-bottom: 1px solid var(--site-line);
}

.hero {
  max-width: 780px;
  margin: 2.5rem 0 3rem;
  color: var(--site-muted);
  font-size: 1.25rem;
  line-height: 1.6;
}

.feature-grid,
.app-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.feature,
.app-item {
  border: 1px solid var(--site-line);
  border-radius: 8px;
  padding: 1rem;
  background: var(--site-surface);
}

.feature h3,
.app-item h3 {
  margin-top: 0;
}

a {
  color: var(--site-accent);
}
