@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Button hover animations */
button {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Link hover transitions */
a {
  transition: opacity 0.2s ease;
}

/* Form input focus states */
input:focus {
  outline: none;
  border-color: #df1f2d !important;
}

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