html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #d8cbb8;
  color: #2c2c2c;
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: #2c2c2c; text-decoration: none; }
a:hover { color: #d49653; }
input::placeholder, textarea::placeholder { color: #978e81; }
button { cursor: pointer; }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-link:hover { color: #d49653 !important; }
.ghost-btn:hover { background: #2c2c2c !important; color: #d8cbb8 !important; }
.ghost-btn-light:hover { background: #d8cbb8 !important; color: #2c2c2c !important; }
