/* ===============================
   INCognati — Base (global)
   =============================== */

:root {
  --text-primary: #f5f7ff;
  --text-secondary: #dfe3ff;
  --text-muted: #aeb6ff;
}

body {
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  opacity: 0.9 /*opacity test*/
}

h1, h2, h3 {
  line-height: 1.25;
  margin-top: 0;
  color: #ffffff;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: 1.75rem;
}

p {
  color: var(--text-secondary);
  margin: 0.75rem 0 1.25rem;
}

a {
  color: #cfd4ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
}

li {
  margin: 0.4rem 0;
}

/* ===============================
   INCognati — Mobile adjustments
   =============================== */

@media (max-width: 768px) {

  body {
    font-size: 17px;
  }

  main {
    padding: 0 1rem;
  }

  h1 {
    font-size: 2.1rem;
  }
}

/* ===============================
   Reduced motion support
   =============================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===============================
   Print styles
   =============================== */
@media print {

  body {
    background: #ffffff !important;
    color: #000000 !important;
  }

  .site-header,
  .site-footer,
  .hamburger,
  .drawer,
  .drawer-overlay {
    display: none !important;
  }

  .glass {
    box-shadow: none !important;
    backdrop-filter: none !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
  }
}
