/* Synergis Consulting - Base Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Base body */
body {
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #c29b40;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a07e30;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid #c29b40;
  outline-offset: 2px;
}

/* Selection color */
::selection {
  background-color: #c29b40;
  color: #fff;
}

/* Smooth transitions for interactive elements */
a,
button {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

/* Prevent layout shift for images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Print styles */
@media print {
  header,
  footer,
  nav {
    display: none;
  }
  body {
    font-size: 12pt;
    color: #000;
  }
}
