/* Anka Landing Page — Custom styles */

html {
  scroll-behavior: smooth;
}

/* Focus visible styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #0284c7;
  outline-offset: 2px;
}

/* Language toggle hover state */
#lang-toggle {
  transition: all 0.2s ease;
}

/* Prevent layout shift while fonts load */
body {
  font-display: swap;
}

/* Smooth section transitions */
section {
  scroll-margin-top: 5rem;
}

/* Blog article prose utilities */
.prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #334155;
}

.prose ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: #334155;
}

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