html {
  scroll-behavior: smooth;
}

body {
  background-color: #12100D;
}

::selection {
  background: #C6A15B;
  color: #12100D;
}

/* subtle scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #12100D;
}
::-webkit-scrollbar-thumb {
  background: #2a251d;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C6A15B;
}

/* reveal-on-scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#mobile-menu.open {
  display: flex;
}

/* Patrika article prose */
.prose-antare p {
  margin-bottom: 1.5rem;
}
.prose-antare blockquote {
  margin: 2.5rem 0;
}
