/* src/styles.css */
:root {
  --md-sys-font-sans:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --md-sys-font-mono: "Roboto Mono", monospace;
  --md-sys-font-display: "Roboto", sans-serif;
  --md-shape-none: 0px;
  --md-shape-xs: 4px;
  --md-shape-sm: 8px;
  --md-shape-md: 12px;
  --md-shape-lg: 16px;
  --md-shape-xl: 24px;
  --md-shape-full: 9999px;
  --md-motion-easing: cubic-bezier(0.2, 0, 0, 1);
  --md-motion-duration-short: 150ms;
  --md-motion-duration-medium: 300ms;
  --md-motion-duration-long: 500ms;
  --md-elevation-1: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --md-elevation-2: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --md-elevation-3: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px 0 rgba(0, 0, 0, 0.3);
  --md-elevation-4: 0 6px 10px 4px rgba(0, 0, 0, 0.15), 0 2px 3px 0 rgba(0, 0, 0, 0.3);
  --md-elevation-5: 0 8px 12px 6px rgba(0, 0, 0, 0.15), 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  --md-sys-color-primary: #895200;
  --md-sys-color-on-primary: #ffffff;
  --md-sys-color-primary-container: #ffdcb8;
  --md-sys-color-on-primary-container: #2c1700;
  --md-sys-color-secondary: #725a41;
  --md-sys-color-on-secondary: #ffffff;
  --md-sys-color-secondary-container: #feddbd;
  --md-sys-color-on-secondary-container: #281805;
  --md-sys-color-tertiary: #56633c;
  --md-sys-color-on-tertiary: #ffffff;
  --md-sys-color-tertiary-container: #d9e9b6;
  --md-sys-color-on-tertiary-container: #141f01;
  --md-sys-color-error: #ba1a1a;
  --md-sys-color-on-error: #ffffff;
  --md-sys-color-error-container: #ffdad6;
  --md-sys-color-on-error-container: #410002;
  --md-sys-color-background: #fff8f5;
  --md-sys-color-on-background: #211a14;
  --md-sys-color-surface: #fff8f5;
  --md-sys-color-on-surface: #211a14;
  --md-sys-color-surface-variant: #f3dfd1;
  --md-sys-color-on-surface-variant: #52443b;
  --md-sys-color-outline: #84746a;
  --md-sys-color-outline-variant: #d6c3b6;
  --md-sys-color-surface-container-lowest: #ffffff;
  --md-sys-color-surface-container-low: #fdf2eb;
  --md-sys-color-surface-container: #f7ece5;
  --md-sys-color-surface-container-high: #f1e6df;
  --md-sys-color-surface-container-highest: #ebe1d9;
  --md-glass-bg: rgba(255, 248, 245, 0.85);
  --md-glass-border: rgba(132, 116, 106, 0.2);
}
[data-theme=dark],
body.dark-theme,
[data-color-scheme=dark] {
  --md-sys-color-primary: #ffb863;
  --md-sys-color-on-primary: #492900;
  --md-sys-color-primary-container: #683d00;
  --md-sys-color-on-primary-container: #ffdcb8;
  --md-sys-color-secondary: #e0c1a3;
  --md-sys-color-on-secondary: #402d17;
  --md-sys-color-secondary-container: #58432c;
  --md-sys-color-on-secondary-container: #feddbd;
  --md-sys-color-tertiary: #bdcc9c;
  --md-sys-color-on-tertiary: #283411;
  --md-sys-color-tertiary-container: #3e4b26;
  --md-sys-color-on-tertiary-container: #d9e9b6;
  --md-sys-color-error: #ffb4ab;
  --md-sys-color-on-error: #690005;
  --md-sys-color-error-container: #93000a;
  --md-sys-color-on-error-container: #ffdad6;
  --md-sys-color-background: #18120c;
  --md-sys-color-on-background: #ebe1d9;
  --md-sys-color-surface: #18120c;
  --md-sys-color-on-surface: #ebe1d9;
  --md-sys-color-surface-variant: #52443b;
  --md-sys-color-on-surface-variant: #d6c3b6;
  --md-sys-color-outline: #9f8d83;
  --md-sys-color-outline-variant: #52443b;
  --md-sys-color-surface-container-lowest: #120d08;
  --md-sys-color-surface-container-low: #211a14;
  --md-sys-color-surface-container: #251e18;
  --md-sys-color-surface-container-high: #302822;
  --md-sys-color-surface-container-highest: #3b332c;
  --md-glass-bg: rgba(24, 18, 12, 0.85);
  --md-glass-border: rgba(159, 141, 131, 0.25);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-family: var(--md-sys-font-sans);
  color-scheme: dark light;
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background-color: var(--md-sys-color-background);
  color: var(--md-sys-color-on-background);
  min-height: 100vh;
  line-height: 1.6;
  font-family: var(--md-sys-font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color var(--md-motion-duration-medium) var(--md-motion-easing), color var(--md-motion-duration-medium) var(--md-motion-easing);
  overflow-x: hidden;
}
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--md-sys-color-on-surface);
  font-weight: 700;
  line-height: 1.25;
}
.font-mono {
  font-family: var(--md-sys-font-mono) !important;
}
.font-display {
  font-family: var(--md-sys-font-display) !important;
}
a {
  color: var(--md-sys-color-primary);
  text-decoration: none;
  transition: color var(--md-motion-duration-short) ease;
}
a:hover {
  text-decoration: underline;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
.m3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 24px;
  border-radius: var(--md-shape-full);
  font-family: var(--md-sys-font-sans);
  font-size: 0.925rem;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--md-motion-duration-short) var(--md-motion-easing);
  border: 1px solid transparent;
}
.m3-btn:active {
  transform: scale(0.98);
}
.m3-btn-filled {
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
}
.m3-btn-filled:hover {
  box-shadow: var(--md-elevation-2);
  filter: brightness(1.08);
}
.m3-btn-tonal {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
}
.m3-btn-tonal:hover {
  box-shadow: var(--md-elevation-1);
  filter: brightness(1.05);
}
.m3-btn-outlined {
  background-color: transparent;
  color: var(--md-sys-color-primary);
  border-color: var(--md-sys-color-outline);
}
.m3-btn-outlined:hover {
  background-color: rgba(255, 184, 99, 0.08);
  border-color: var(--md-sys-color-primary);
}
.m3-btn-text {
  background-color: transparent;
  color: var(--md-sys-color-primary);
  padding: 0 16px;
}
.m3-btn-text:hover {
  background-color: rgba(255, 184, 99, 0.08);
}
.m3-btn-sm {
  height: 34px;
  padding: 0 16px;
  font-size: 0.85rem;
}
.m3-btn-lg {
  height: 52px;
  padding: 0 32px;
  font-size: 1.05rem;
  font-weight: 700;
}
.m3-card {
  background-color: var(--md-sys-color-surface-container);
  color: var(--md-sys-color-on-surface);
  border-radius: var(--md-shape-xl);
  border: 1px solid var(--md-sys-color-outline-variant);
  overflow: hidden;
  transition:
    transform var(--md-motion-duration-short) var(--md-motion-easing),
    box-shadow var(--md-motion-duration-short) var(--md-motion-easing),
    border-color var(--md-motion-duration-short) ease;
}
.m3-card-elevated {
  box-shadow: var(--md-elevation-1);
}
.m3-card-interactive:hover {
  transform: translateY(-4px);
  box-shadow: var(--md-elevation-3);
  border-color: var(--md-sys-color-primary);
}
.m3-glass {
  background: var(--md-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--md-glass-border);
}
.m3-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  border-radius: var(--md-shape-sm);
  background-color: var(--md-sys-color-surface-container-high);
  color: var(--md-sys-color-on-surface-variant);
  border: 1px solid var(--md-sys-color-outline-variant);
  font-size: 0.825rem;
  font-weight: 500;
}
.m3-chip-primary {
  background-color: var(--md-sys-color-primary-container);
  color: var(--md-sys-color-on-primary-container);
  border-color: transparent;
}
.m3-chip-secondary {
  background-color: var(--md-sys-color-secondary-container);
  color: var(--md-sys-color-on-secondary-container);
  border-color: transparent;
}
.m3-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.m3-input-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--md-sys-color-on-surface-variant);
}
.m3-input,
.m3-textarea,
.m3-select {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--md-sys-color-surface-container-highest);
  color: var(--md-sys-color-on-surface);
  border: 1.5px solid var(--md-sys-color-outline-variant);
  border-radius: var(--md-shape-md);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--md-motion-duration-short) ease, box-shadow var(--md-motion-duration-short) ease;
}
.m3-input:focus,
.m3-textarea:focus,
.m3-select:focus {
  border-color: var(--md-sys-color-primary);
  box-shadow: 0 0 0 3px rgba(255, 184, 99, 0.25);
}
.m3-textarea {
  min-height: 120px;
  resize: vertical;
}
.m3-dialog-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
  animation: m3FadeIn var(--md-motion-duration-short) ease-out;
}
.m3-dialog {
  background-color: var(--md-sys-color-surface-container-high);
  color: var(--md-sys-color-on-surface);
  border-radius: var(--md-shape-xl);
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--md-elevation-4);
  border: 1px solid var(--md-sys-color-outline-variant);
  padding: 28px;
  position: relative;
  animation: m3ZoomIn var(--md-motion-duration-short) var(--md-motion-easing);
}
@keyframes m3FadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes m3ZoomIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
  width: 100%;
}
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 16px;
}
@media (pointer: coarse) {
  button,
  .m3-btn,
  .nav-link,
  .icon-btn,
  a {
    min-height: 40px;
  }
}
@media (max-width: 1024px) {
  :root {
    --md-elevation-1: 0 1px 2px rgba(0, 0, 0, 0.2);
    --md-elevation-2: 0 2px 4px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 768px) {
  .m3-dialog {
    padding: 20px 16px;
    max-width: 95vw;
    border-radius: var(--md-shape-lg);
  }
  .m3-input,
  .m3-textarea,
  .m3-select {
    font-size: 16px !important;
  }
}

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