/* src/styles.scss */
:root {
  --font-family: Plus Jakarta Sans, sans-serif;
  --color-bg-base: #1e1510;
  --color-bg-card: #2a1e17;
  --color-bg-surface: #32261e;
  --color-accent-gold: #f39c12;
  --color-accent-orange: #f96220;
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.8);
  --color-text-muted: rgba(255, 255, 255, 0.5);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-accent: var(--color-accent-gold);
  --color-bg: var(--color-bg-base);
  --color-text: var(--color-text-primary);
  --header-bg: rgba(42, 30, 23, 0.8);
  --header-blur: 12px;
  --header-height: 64px;
  --footer-height: 60px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
  --badge-bg: rgba(243, 156, 18, 0.2);
  --badge-text: var(--color-accent-gold);
  --section-padding-x: var(--space-4);
  --section-padding-y: var(--space-6);
}
[data-theme=light] {
  --color-bg-base: #faf6f2;
  --color-bg-card: #ffffff;
  --color-bg-surface: #f0e8e0;
  --color-text-primary: #1a1008;
  --color-text-secondary: rgba(26, 16, 8, 0.75);
  --color-text-muted: rgba(26, 16, 8, 0.5);
  --color-border: rgba(26, 16, 8, 0.1);
  --header-bg: rgba(250, 246, 242, 0.85);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --badge-bg: rgba(243, 156, 18, 0.15);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
  height: 100dvh;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  height: 100%;
  height: 100dvh;
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  overflow: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
app-root {
  display: flex;
  flex-direction: column;
  height: 100%;
  height: 100dvh;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.text-display {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
}
.text-heading-1 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 1.1;
}
.text-heading-2 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 1.2;
}
.text-heading-3 {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.3;
}
.text-body {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-secondary);
}
.text-body-sm {
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: var(--color-text-secondary);
}
.text-label {
  font-weight: 800;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.text-caption {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.333;
  color: var(--color-text-muted);
}
.text-accent-gold {
  color: var(--color-accent-gold);
}
.text-accent-orange {
  color: var(--color-accent-orange);
}
.text-muted {
  color: var(--color-text-muted);
}
.text-secondary {
  color: var(--color-text-secondary);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--color-accent-gold);
  color: #1a1008;
  font-weight: 800;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 1rem;
}
:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.accent-line {
  display: inline-block;
  width: 48px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--color-accent-gold);
}
.accent-line--orange {
  background: var(--color-accent-orange);
}
.masonry-grid {
  columns: 2;
  column-gap: var(--space-2);
}
@media (min-width: 768px) {
  .masonry-grid {
    columns: 3;
  }
}
@media (min-width: 1024px) {
  .masonry-grid {
    columns: 4;
  }
}
.masonry-grid > * {
  break-inside: avoid;
  margin-bottom: var(--space-2);
}
.scroll-container {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--space-1);
}
.scroll-container::-webkit-scrollbar {
  display: none;
}
.scroll-container > * {
  flex-shrink: 0;
  scroll-snap-align: start;
}
@media (max-width: 767px) {
  .scroll-container {
    padding-right: var(--space-3);
  }
}
.page-back-btn {
  display: none;
}
@media (min-width: 1024px) {
  .page-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: var(--space-2) var(--space-3);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--color-text-muted);
    letter-spacing: 0.03em;
    transition: color var(--transition-fast);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }
  .page-back-btn:hover {
    color: var(--color-accent-gold);
  }
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--section-padding-x);
}
.section {
  padding-block: var(--section-padding-y);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-fade-up {
  animation: fadeInUp 0.6s ease both;
}
.animate-fade-in {
  animation: fadeIn 0.4s ease both;
}
.animate-delay-1 {
  animation-delay: 80ms;
}
.animate-delay-2 {
  animation-delay: 160ms;
}
.animate-delay-3 {
  animation-delay: 240ms;
}
.animate-delay-4 {
  animation-delay: 320ms;
}
.animate-delay-5 {
  animation-delay: 400ms;
}
.animate-delay-6 {
  animation-delay: 480ms;
}
.animate-delay-7 {
  animation-delay: 560ms;
}
.animate-delay-8 {
  animation-delay: 640ms;
}
.animate-delay-9 {
  animation-delay: 720ms;
}
.animate-delay-10 {
  animation-delay: 800ms;
}

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