.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: 100;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

:root {
  --color-primary: #0A2F2B;
  --color-accent: #E2C799;
  --color-cool-gray: #475569;
  --color-background-light: #F8FAFC;
  --color-background-dark: #051210;
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: Playfair Display, Georgia, serif;
  --radius-default: 0.5rem;
  --radius-lg: 1rem;
  --container-max: 80rem;
  /* --sif-pattern set via sif_theme.theme for aggregation-safe path */
  --sif-pattern: url('../images/sif-pattern.png');
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans, Inter, -apple-system, BlinkMacSystemFont, sans-serif);
  color: #475569;
  background-color: #F8FAFC;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3, h4, h5, h6,
.font-display {
  font-family: var(--font-display, Playfair Display, Georgia, serif);
  color: var(--color-primary, #0A2F2B);
  font-weight: 700;
}

h1 {
  font-size: 3rem;
  line-height: 1.25;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

a {
  color: var(--color-primary, #0A2F2B);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: var(--color-accent, #E2C799);
}

.dark body,
[data-theme=dark] body {
  background-color: #051210;
  color: #CBD5E1;
  font-family: var(--font-sans, Inter, -apple-system, BlinkMacSystemFont, sans-serif);
  -webkit-font-smoothing: antialiased;
}
.dark h1, .dark h2, .dark h3, .dark h4,
[data-theme=dark] h1,
[data-theme=dark] h2,
[data-theme=dark] h3,
[data-theme=dark] h4 {
  font-family: var(--font-display, Playfair Display, Georgia, serif);
  font-weight: 700;
  color: #ffffff;
}
.dark a,
[data-theme=dark] a {
  color: var(--color-accent, #E2C799);
  font-family: inherit;
}
.dark a:hover,
.dark a:focus,
[data-theme=dark] a:hover,
[data-theme=dark] a:focus {
  color: #D1FAE5;
}
/*# sourceMappingURL=base.css.map */
