body {
  font-family: 'Inter', sans-serif;
  background-color: #F9FAFB;
  color: #0F172A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #94A3B8; }
@media print {
  body { background-color: white; margin: 0; padding: 0; }
  body > * { display: none !important; }
  #printable-cv-area, #printable-cv-area * { display: block !important; visibility: visible !important; }
  #printable-cv-area { position: absolute; left: 0; top: 0; width: 100%; margin: 0; padding: 0; transform: none !important; }
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* Loader initial */
#initial-loader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: #0F172A; z-index: 9999; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  color: #C6A87C; transition: opacity 0.5s;
}
@keyframes spin { to { transform: rotate(360deg); } }
