@import "https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap";

/* src/styles.scss */
:root {
  --color-primary: #d89321;
  --color-primary-light: #f0b54d;
  --color-primary-dark: #a56a09;
  --color-secondary: #ffd27b;
  --color-accent: #ffeaad;
  --color-success: #2da44e;
  --color-danger: #e5484d;
  --color-warning: #f2b84b;
  --color-info: #57b5f9;
  --color-text: #f5f5f5;
  --color-text-muted: #c2c2c2;
  --color-muted: #9f9f9f;
  --color-border: #2f2f2f;
  --color-background: #0f0f0f;
  --color-surface: #181818;
  --color-surface-alt: #232323;
  --color-heading: #fff5dc;
  --font-family-base:
    "Poppins",
    "Segoe UI",
    sans-serif;
  --font-family-heading:
    "Poppins",
    "Segoe UI",
    sans-serif;
  --font-size-root: 16px;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --line-height-tight: 1.2;
  --line-height-base: 1.5;
  --line-height-relaxed: 1.7;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgb(15 23 42 / 0.08);
  --shadow-md: 0 8px 24px rgb(15 23 42 / 0.1);
  --shadow-lg: 0 16px 40px rgb(15 23 42 / 0.14);
  --duration-fast: 120ms;
  --duration-base: 220ms;
  --duration-slow: 340ms;
  --easing-base: cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1100px;
}
.theme-amber {
  --color-primary: #d89321;
  --color-primary-light: #f0b54d;
  --color-primary-dark: #a56a09;
  --color-secondary: #ffd27b;
  --color-accent: #ffeaad;
}
.theme-gold {
  --color-primary: #c77f08;
  --color-primary-light: #e8a936;
  --color-primary-dark: #9a5f00;
  --color-secondary: #f7bf63;
  --color-accent: #ffe3ac;
}
.theme-carbon {
  --color-primary: #e0a438;
  --color-primary-light: #f1bf63;
  --color-primary-dark: #b27918;
  --color-secondary: #ffe0a3;
  --color-accent: #fff0ce;
}
html {
  font-size: var(--font-size-root);
}
body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-base);
  color: var(--color-text);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
}
h1 {
  font-size: var(--font-size-3xl);
}
h2 {
  font-size: var(--font-size-2xl);
}
h3 {
  font-size: var(--font-size-xl);
}
h4 {
  font-size: var(--font-size-lg);
}
h5,
h6 {
  font-size: var(--font-size-md);
}
p {
  margin: 0;
  color: var(--color-text-muted);
}
small {
  font-size: var(--font-size-xs);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--color-background);
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
app-root {
  display: block;
  min-height: 100%;
}
img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
input.invalid,
select.invalid,
textarea.invalid {
  border-color: var(--color-danger) !important;
}
input.invalid:focus,
select.invalid:focus,
textarea.invalid:focus {
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-danger) 16%, transparent) !important;
}
select,
option,
optgroup {
  color: var(--color-text);
}
select {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--color-surface);
  background-image:
    linear-gradient(
      45deg,
      transparent 50%,
      var(--color-text-muted) 50%),
    linear-gradient(
      135deg,
      var(--color-text-muted) 50%,
      transparent 50%);
  background-position: calc(100% - 1rem) calc(50% + 1px), calc(100% - 0.7rem) calc(50% + 1px);
  background-size: 0.32rem 0.32rem, 0.32rem 0.32rem;
  background-repeat: no-repeat;
  padding-right: 2rem;
}
@media (max-width: 920px) {
  input,
  textarea,
  select,
  button {
    font-size: 16px;
  }
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-base) var(--easing-base);
}
a:hover {
  color: var(--color-primary-dark);
}
button {
  border: 0;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #111;
  cursor: pointer;
  transition:
    transform var(--duration-fast) var(--easing-base),
    box-shadow var(--duration-base) var(--easing-base),
    background-color var(--duration-base) var(--easing-base);
}
button:hover {
  background: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
}
button:active {
  transform: translateY(1px);
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}
:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}
.btn {
  padding: 0.85rem 1.5rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  font-weight: var(--font-weight-semibold);
  transition: all var(--duration-base) var(--easing-base);
  cursor: pointer;
}
.btn--primary {
  background:
    linear-gradient(
      135deg,
      var(--color-primary-light),
      var(--color-primary));
  color: #111;
  border-color: color-mix(in srgb, var(--color-primary-light), #000 35%);
}
.btn--primary:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(216, 147, 33, 0.35);
}
.btn--ghost {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--color-primary), #fff 18%);
  color: var(--color-text);
}
.btn--ghost:not(:disabled):hover {
  background: color-mix(in srgb, var(--color-primary), #000 65%);
  color: var(--color-primary-light);
}
.btn--ghost-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}
.btn--ghost-light:not(:disabled):hover {
  background: #fff;
  color: #000;
}
.btn--subtle {
  background: var(--color-surface-alt);
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--subtle:not(:disabled):hover {
  background: color-mix(in srgb, var(--color-surface-alt), #fff 4%);
}
.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
body.modal-open {
  overflow: hidden !important;
  position: fixed;
  inset: 0;
  width: 100%;
  overscroll-behavior: none;
  touch-action: none;
}

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