/* src/styles.scss */
:root {
  --primary: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --accent: #d46a6a;
  --accent-light: #e89090;
  --secondary: #f4a460;
  --secondary-light: #f7c794;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-tertiary: #666666;
  --text-light: #999999;
  --bg-primary: #ffffff;
  --bg-secondary: #fafafa;
  --bg-tertiary: #f8f9fa;
  --border: #e0e0e0;
  --border-light: rgba(0, 0, 0, 0.06);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.12);
  --transition-fast: 0.15s ease-in-out;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans:
    Noto Sans Georgian,
    -apple-system,
    BlinkMacSystemFont,
    Segoe UI,
    Roboto,
    sans-serif;
  --font-serif:
    Georgia,
    Times New Roman,
    serif;
  --font-mono:
    Courier New,
    Courier,
    monospace;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
body {
  font-family:
    "Noto Sans Georgian",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: #fafafa;
  line-height: 1.65;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}
h2 {
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
}
h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
}
h4 {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}
p {
  margin-bottom: 1rem;
}
a {
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #6d28d9;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input,
select,
textarea {
  font-family: inherit;
}
input[type=text],
input[type=email],
input[type=tel],
input[type=date],
select,
textarea {
  width: 100%;
}
::selection {
  background: #7c3aed;
  color: white;
}
::-moz-selection {
  background: #7c3aed;
  color: white;
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #f8f9fa;
}
::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #999999;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
.text-center {
  text-align: center;
}
.text-primary {
  color: #7c3aed;
}
.text-secondary {
  color: #4a4a4a;
}
.bg-primary {
  background: #7c3aed;
}
.bg-white {
  background: white;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fade-in {
  animation: fadeIn 0.5s ease-out;
}
.slide-up {
  animation: slideUp 0.5s ease-out;
}
*:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  @page {
    margin: 2cm;
  }
}

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