/* Property Operations Network: custom styles */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Smooth focus states */
a, button {
  transition: all 0.2s ease;
}

/* Prose content for blog articles */
.prose h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #10263D;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

::selection {
  background-color: #C9A35B;
  color: #10263D;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F7F4EE;
}
::-webkit-scrollbar-thumb {
  background: #10263D;
  border-radius: 6px;
}
