/* Grounded HR Consulting - Global Styles */

/* Hero pattern background */
.hero-pattern {
  background-image: radial-gradient(rgba(26, 77, 46, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Smooth transitions for interactive elements */
a,
button {
  transition: all 0.3s ease;
}

/* Ensure consistent scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #1B4D3E;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4F6F52;
}

/* Animation utilities */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fade-in-up 0.6s ease-out;
}

/* Ensure Material Icons render properly */
.material-icons,
.material-icons-outlined {
  font-family: 'Material Icons', 'Material Icons Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'liga';
}
