/* style.css */

/* GLOBAL SETTINGS */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* TESTIMONIAL QUOTES */
.testimonial {
  font-style: italic;
  font-size: 1.1rem;
  color: #444;
}

/* FORM ELEMENTS */
input, textarea {
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #38a169; /* Tailwind green-600 */
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.2);
}

/* BUTTONS */
button, a.button {
  transition: background-color 0.2s ease-in-out, transform 0.15s ease;
}

button:hover, a.button:hover {
  transform: translateY(-1px);
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #c0c0c0;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: #999;
}
