@charset "UTF-8";

/* src/styles.scss */
@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/assets/fonts/cinzel-latin-400.woff2) format("woff2");
}
@font-face {
  font-family: "Cinzel Decorative";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/cinzel-decorative-latin-400.woff2) format("woff2");
}
@font-face {
  font-family: "Cinzel Decorative";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/assets/fonts/cinzel-decorative-latin-700.woff2) format("woff2");
}
@font-face {
  font-family: "Cinzel Decorative";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/assets/fonts/cinzel-decorative-latin-900.woff2) format("woff2");
}
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url(/assets/fonts/lora-latin-400.woff2) format("woff2");
}
@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/lora-latin-400-italic.woff2) format("woff2");
}
:root {
  --color-bg: #241b3a;
  --color-bg-deep: #170f27;
  --color-panel: #f5f0e6;
  --color-panel-shadow: rgba(0, 0, 0, 0.45);
  --color-ink: #2c2333;
  --color-ink-muted: #5a4f66;
  --color-accent: #d4af37;
  --color-accent-soft: #e8cf82;
  --color-heading: #4a2c6d;
  --color-border: #d4af37;
  --font-display:
    "Cinzel Decorative",
    "Cinzel",
    serif;
  --font-heading: "Cinzel", serif;
  --font-body: "Lora", serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
}
body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background:
    radial-gradient(
      circle at 20% 0%,
      #362857 0%,
      transparent 55%),
    radial-gradient(
      circle at 100% 100%,
      #2f2350 0%,
      transparent 50%),
    linear-gradient(
      180deg,
      var(--color-bg) 0%,
      var(--color-bg-deep) 100%);
  background-attachment: fixed;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  letter-spacing: 0.03em;
}
a {
  color: var(--color-heading);
}
::selection {
  background: var(--color-accent-soft);
  color: var(--color-ink);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 6px;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
