/* ✅ Import DM Sans font */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;700&display=swap');

/* ✅ Global font settings */
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

/* ✅ Headings */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin: 1.2em 0 0.5em;
}

/* ✅ Links */
a {
  color: #C75324;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover,
a:focus {
  color: #9f3e17;
  text-decoration: underline;
}

/* ✅ Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ✅ Forms (basic alignment fix) */
input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
  border-radius: 4px;
}

/* ✅ Base spacing */
p {
  margin: 1em 0;
}

/* ✅ Button: orange variant */
.button-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.2em;
  min-height: 44px;
  margin-top: 0.75em;
  background-color: #C75324;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-orange:hover {
  background-color: #9f3e17;
  transform: translateY(-2px);
}

.button-orange:visited,
.button-orange:focus,
.button-orange:active {
  color: white;
  text-decoration: none;
  outline: none;
}

/* ✅ Responsive: buttons go full width on small screens */
@media (max-width: 600px) {
  .button-orange {
    width: 100%;
    font-size: 1.1rem;
  }
}

